TiPlotLimit.LineStyle

TiPlotLimit

Specifies the line style of the channel trace line.

type TPenStyle = (psSolid, psDash, psDot, psDashDot, psDashDotDot, psClear,

psInsideFrame);

property LineStyle : TPenStyle;

Description

Use LineStyle to get or set the line style of the limit line or lines. This property is ignored if the Limit's Style property is set to iplsBandX, iplsBandY, iplsPolyBandX, or iplsPolyBandY.

These are the possible values:

Value
Meaning
psSolid
A solid line.
psDash
A line made up of a series of dashes.
psDot
A line made up of a series of dots.
psDashDot
A line made up of alternating dashes and dots.
psDashDotDot
A line made up of a series of dash-dot-dot combinations.
psClear
No line is drawn.
psInsideFrame
A solid line, but one that may use a dithered color if Width is greater than 1.
Note:Only the psInsideFrame style will produce a dithered color to match a Color property that is not in the color table. All others choose the closest color from the Windows color table.

Note:Dotted or dashed pen styles are not available when the Width property is not 1 or 0.

Example

Delphi

iComponent.Limit[0].LineStyle := psSolid;

C++ Builder

iComponent->Limit[0]->LineStyle = psSolid;

Contents | Index | Previous | Next