TiPlotChannel.DigitalReferenceStyle

TiPlotChannel See Also

Used to set the reference style of digital channels.

type TxiPlotDigitalReferenceStyle = (ipdrScale = 0, ipdrPercent = 1);

property DigitalReferenceStyle : TxiPlotDigitalReferenceStyle

Description

Use DigitalReferenceStyle to get or set the formatting style of a digital channel.

Value
Meaning
ipdrScale
DigitalReferenceLow and DigitalReferenceHigh properties are interpreted as actual values on the associated Y Axis Scale
ipdrPercent
DigitalReferenceLow and DigitalReferenceHigh properties are interpreted as a percentage of the distance from the bottom of the DataView (0%) and the top of the DataView (100%) [Note: Acceptable values are between 0 and 100]

Example

Delphi

iComponent.Channel[0].DigitalReferenceStyle := ipdrPercent;

C++ Builder

iComponent->Channel[0]->DigitalReferenceStyle = ipdrPercent;

Contents | Index | Previous | Next