Write-Read
About Diff I/Q App

XAxisDomain Property


Description

Sets and returns the X-Axis domain of the selected DIQ measurement.

VB Syntax

Meas.XAxisDomain = value

Variable

(Type) - Description

Meas

A Measurement (object)

value

String - Domain that is displayed on the X-axis.

Choose one of these:

Then set X-Axis Source (XAxis Property) using one of these as the argument.

"Frequency"

"F1", "F2", etc.

"Power"

Source port: "Port 1", "Port 2", etc.

"Phase"

Source port: "Port 1", "Port 2", etc.

"DC"

DC Source:"AO1", "AO2"

"Points"

"Points"

Example

1. Meas.XAxisDomain = "Frequency"

2. Meas.XAxis = "F2"

domain = Meas.XAxisDomain 'Read

C++ Syntax

HRESULT put_XAxisDomain(BSTR domain);

HRESULT get_XAxisDomain(BSTR *domain);

Interface

IMeasurement17