TiPlotChannel.FillStyle

TiPlotChannel See Also

Specifies the brush style used when drawing the fill underneath the channel data.

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

property FillStyle : TBrushStyle;

Description

Use FillStyle to get or set the brush style used when drawing the fill underneath the channel data.

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.Channel[0].FillStyle := bsSolid;

C++ Builder

iComponent->Channel[0]->FillStyle = bsSolid;

Contents | Index | Previous | Next