Indicates the type of brush.
Namespace: RSGdiPlusGraphicsTypes
Delphi
|
type
TRSGPBrushKind = (
bkNone,
bkSolid,
bkGradient,
bkBitmap,
bkHatchFill
);
|
|
Name
|
Description
|
|
bkBitmap
|
Indicates 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.
|
|
bkGradient
|
Indicates a gradient fill brush, either radial or linear gradient.
|
|
bkHatchFill
|
Indicates a hatch pattern filled brush. A hatch brush paints a background and paints, over that background, a pattern of lines, dots, dashes, squares, crosshatch, or some variation of these. The hatch brush consists of two colors: one for the background and one for the pattern over the background. The color of the background is called the background color, and the color of the pattern is called the foreground color.
|
|
bkNone
|
Indicates no fill will be applied.
|
|
bkSolid
|
Indicates a solid color brush. A solid brush paints a single, constant color that can be opaque or transparent.
|
Top
|
The FMX TBrushKind = (bkNone, bkSolid, bkGradient, bkBitmap, bkResource);
|