Read-only
About Balanced Measurements

IsSingleEnded Property


Description

Returns whether or not the specified logical port number is single ended.

 VB Syntax

value = chan.IsSingleEnded(logicalPort)

Variable

(Type) - Description

balTopology

A BalancedTopology (object)

value

(boolean) - Returned value is either:

False  - Logical port number is NOT single ended.

True - Logical port number IS single ended.

logicalPort

(Long Integer) Logical port number.

Return Type

Boolean

Default

Not Applicable

Examples

'In the following example, 6 logical ports are mapped to 8 physical VNA ports.
'Logical port 4 is queried and "True" is returned.

Int portlist[] = {1,2,3,4,5,6,7,8}
balTopology.SetCustomDuTTopology ("SSBSSB", portlist)
variable = balTopology.IsSingleEnded(4) 'Read

C++ Syntax

HRESULT get_IsSingleEnded(long logicalPort, VARIANT_BOOL *bSingleEnded);

Interface

IBalancedTopology3