TiPlotComponent.AnnotationDefaultBrushStlye

TiPlotComponent See Also

Specifies the default brush style used when creating annotation objects.

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

property AnnotationDefaultBrushStlye : TBrushStyle;

Description

Use BrushStyle to get or set the default brush style used when creating annotation objects.

To modify the individual Brush Style of a particular Annotation after creation, see the BrushStyle property of a specific Annotation Object.

Note: This property is misspelled. Since we need to main backwards compatibility, this cannot be corrected.

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.AnnotationDefaultBrushStlye := bsSolid;

C++ Builder

iComponent->AnnotationDefaultBrushStlye = bsSolid;

Contents | Index | Previous | Next