TiStripChart.ChannelControlLimitUpperLineStyle

TiStripChart See Also

Used to specify the line style of the upper control limit for a specific channel.

type TiChannelLineStyle = (iclsSolid, iclsDash, iclsDot, iclsDashDot, iclsDashDotDot);

property ChannelControlLimitUpperLineStyle[Index: Integer] : TiChannelLineStyle

Description

Use ChannelControlLimitUpperLineStyle to specify the line style of the upper control limit for a specific channel.

Value
Meaning
iclsSolid
A solid line.
iclsDash
A line made up of a series of dashes.
iclsDot
A line made up of a series of dots.
iclsDashDot
A line made up of alternating dashes and dots.
iclsDashDotDot
A line made up of a serious of dash-dot-dot combinations.

Example

Delphi

iComponent.ChannelControlLimitUpperLineStyle[0] := iclsSolid;

C++ Builder

iComponent->ChannelControlLimitUpperLineStyle[0] = iclsSolid;

Note: The index value is 0 based.

Contents | Index | Previous | Next