|
BackColor
|
Specifies the background color of a hatch fill brush. The background color defines the color over which the hatch lines are drawn.
|
|
|
Bitmap
|
Specifies the image to use when the Kind is bkBitmap, which is a textured or patterned brush filled from a bitmap.
A texture brush paints an image. The image or texture is either a portion of a specified image or a scaled version of a specified image. The type of image (metafile or nonmetafile) determines whether the texture is a portion of the image or a scaled version of the image.
Note
|
To properly use the Bitmap property, you must set the Kind property to bkBitmap.
|
|
|
|
BitmapSrcRect
|
Defines the size of the bitmap texture brush and the portion of the image to be used. If the Image object is created from a metafile, the brush uses the entire image, which is scaled to fit the size of the brush.
|
|
|
Color
|
Specifies the color of the brush when the brush kind is bkSolid or foreground color when brush kind is bkHatchFill
Note
|
To properly use the Color property, you must set the Kind property to bkSolid or bkHatchFill.
|
|
|
|
DefaultColor
|
Defines the default color of the brush. The brush object uses the DefaultColor property to determine whether the color of the brush is stored when streaming.
|
|
|
DefaultKind
|
Defines the default kind of the brush. The brush object uses the DefaultKind property to determine whether the Kind of the brush is stored when streaming.
|
|
|
Gradient
|
Specifies the gradient style and colors for the brush.
The Gradient property specifies the gradient style and the gradient colors for the TRSGPBrush object.
Note
|
To properly use the Gradient property, you must set the Kind property to bkGradient.
|
|
|
|
Handle
|
Handle of the graphics object, used by the MS GDI+ flat API routines (Inherited from RSGdiPlusGraphics.TRSGPGraphicsObject.)
|
|
|
HatchStyle
|
Specifies the hatch style of the hatch brush.
Note
|
To properly use the HatchStyle property, you must set the Kind property to bkHatchFill.
|
|
|
|
Kind
|
Determines the pattern for the brush.
Use Kind to specify the pattern painted by the brush. Kind can have one of the following values:
|
|
bkBitmap
|
The brush's pattern is defined by an external bitmap image.
|
|
|
bkGradient
|
The brush's pattern is a gradient and you can set the gradient type and colors.
|
|
|
bkNone
|
The brush has no pattern. The fill of the object is transparent and the Color property has no effect.
|
|
|
bkSolid
|
The brush's pattern is a solid color, which you can set by using the Color property.
|
|
|
bkHatchFill
|
The brush's pattern is a hatch fill. The brush defines a rectangular brush with a hatch style, a foreground color, and a background color. There are six hatch styles. The foreground color defines the color of the hatch lines; the background color defines the color over which the hatch lines are drawn.
|
|
|