This property sets the pattern of the brush.
[C++Builder] imagekitcontrolname->PrintDraw->BrushStyle
[ = TVIkBrushStyle ]
[Delphi] imagekitcontrolname.PrintDraw.BrushStyle
[ = TVIkBrushStyle ]
[TVIkBrushStyle Type]
Unit
IkInit
type
TVIkAppearance = (vikBrushNull,
vikBrushSolid, vikBrushHatchBdiagonal, vikBrushHatchCross,
vikBrushHatchDiagcross, vikBrushHatchFdiagonal,
vikBrushHatchHorizontal, ikBrushHatchVertical);
Property Value
Value | Explanation |
---|---|
vikBrushNull | The brush does not paint. (BS_NULL) |
vikBrushSolid | The brush paints solid colors. (BS_SOLID) |
vikBrushHatchBdiagonal | The brush paints a pattern of diagonal lines from the top right to the bottom left. (BS_HATCHED,HS_BDIAGONAL) |
vikBrushHatchCross | The brush paints a hatch pattern of vertical and horizontal lines. (BS_HATCHED,HS_CROSS) |
vikBrushHatchDiagcross | The brush paints a hatch pattern of crossing diagonal lines. (BS_HATCHED,HS_DIAGCROSS) |
vikBrushHatchFdiagonal | The brush paints a pattern of diagonal lines from the top left to the bottom right. (BS_HATCHED,HS_FDIAGONAL) |
vikBrushHatchHorizontal | The brush paints a pattern of horizontal lines. (BS_HATCHED,HS_HORIZONTAL) |
ikBrushHatchVertical | The brush paints a pattern of vertical lines. (BS_HATCHED,HS_VERTICAL) |
( ) The explanation contained in the parentheses has the same meaning as the constants used by WindowsAPI.
Explanation
The BrushStyle property sets the pattern of the brush.
Setting this value
This value can be set at runtime.
Retrieving this value
This value cannot be retrieved.
Differences from ImageKit7/8/9 ActiveX
In VCL, constants contain a "v". In ActiveX, the constants are: ikBrushNull, ikBrushSolid, ikBrushHatchBdiagonal, ikBrushHatchCross, ikBrushHatchDiagcross, ikBrushHatchFdiagonal, ikBrushHatchHorizontal, ikBrushHatchVertical.