Read-only

 

GetXAxisValues Method


Description

Returns the stimulus values for the measurement. To understand how this property is useful, see IMeasurement2 Interface.

 VB Syntax

data = meas.GetXAxisValues

Variable

(Type) - Description

data

(Variant) Array to store the data.

meas

A Measurement  (object)

Return Type

Variant

Default

Not Applicable

Examples

Dim varData As Variant
Dim i As Integer
varData = meas.GetXAxisValues
'Print Data
For i = 0 To meas.NumberOfPoints - 1
Print varData(i)
Next i

See C++ example

C++ Syntax

HRESULT GetXAxisValues(VARIANT* xData);

Interface

IMeasurement2


Last Modified:

15-Oct-2007

Added link to C++ example