TiPlotDataCursor.Status

TiPlotDataCursor

Specifies the status of the .

type TiPlotDataPointStatus = (ipdpsValid, ipdpsNull, ipdpsEmpty);

property Status : TiPlotDataPointStatus;

Description

Use Status to get the status of the ValueX and ValueY properties. This property let your know if the two properties contains valid values, contains null data values, or contains no valid values at all.

These are the possible values:

Value
Meaning
ipdpsValid
The ValueX and ValueY properties of the cursor are valid.
ipdpsNull
For iXYPlot both the ValueX and ValueY properties contain a null.
For iPlot the ValueY property contains a null value. [iPlot does not support null values in ValueX ]
ipdpsEmpty
Both the ValueX and ValueY properties are empty and contain no valid data.

Example

Delphi

Value := iComponent.DataCursor[0].Status;

C++ Builder

Value = iComponent->DataCursor[0]->Status;

Contents | Index | Previous | Next