TiPlotChannelCustom.TraceLineStyle

TiPlotChannelCustom See Also

Specifies the line style of the channel trace line.

type TiPlotLineStyle = (iplsSolid, iplsDash, iplsDot, iplsDashDot, iplsDashDotDot);

property TraceLineStyle : TiPlotLineStyle;

Description

Use TraceLineStyle to get or set the line style of the channel trace line.

These are the possible values:

Value
Meaning
iplsSolid
A solid line.
iplsDash
A line made up of a series of dashes
iplsDot
A line made up of a series of dots.
iplsDashDot
A line made up of alternating dashes and dots.
iplsDashDotDot
A line made up of a series of dash-dot-dot combinations.

Example

Delphi

iComponent.Channel[0].TraceLineStyle := iplsSolid;

C++ Builder

iComponent->Channel[0]->TraceLineStyle = iplsSolid;

Contents | Index | Previous | Next