TiPlotChannel.DigitalEnabled
TiPlotChannel See Also
Specifies whether the data in the channel is interpreted as digital or analog
data.
property DigitalEnabled : Boolean
Description
Use DigitalEnabled to specify whether the data in the channel is interpreted
as digital or analog data.. If DigitalEnabled is TRUE, then values of 0 and 1
are plotted against DigitalReferenceLow and DigitalReferenceHigh respectively.
Y coordinate values that are equal to 0 (i.e. Value = 0) are plotted on the
scale at the Y coordinate specified by DigitalReferenceLow.
X coordinates that are not equal to 0 (i.e. 0 < Value > 0) are plotted on the
scale at the Y coordinate specified by DigitalReferenceHigh.
Example
Delphi
iComponent.Channel[0].DigitalEnabled := True;
C++ Builder
iComponent->Channel[0]->DigitalEnabled = TRUE;
Contents | Index | Previous | Next