TiPlotAnnotationObject.BrushStyle

TiPlotAnnotationObject See Also

Specifies the brush style used when drawing the annotation object.

type TBrushStyle = (bsSolid, bsClear, bsHorizontal, bsVertical, bsFDiagonal, bsBDiagonal, bsCross, bsDiagCross);

property BrushStyle : TBrushStyle;

Description

Use BrushStyle to get or set the brush style used when drawing the annotation object. This property has no effect when the Style is set to Line or Text.

These are the possible values:

Value
Meaning
bsSolid
Solid.
bsClear
Clear.
bsHorizontal
Horizontal Lines.
bsVertical
Vertical Lines.
bsFDiagonal
Diagonal Bottom-Left to Top-Right.
bsBDiagonal
Diagonal Top-Left to Bottom-Right.
bsCross
Combination of bsHorizontal and bsVertical.
bsDiagCross
Combination of bsFDiagonal and bsBDiagonal.

Example

Delphi

iComponent.Annotation[0].BrushStyle := bsSolid;

C++ Builder

iComponent->Annotation[0]->BrushStyle = bsSolid;

Contents | Index | Previous | Next