Read-only
About Balanced Measurements

IsBalanced Property


Description

Returns whether or not the specified logical port number is balanced.

 VB Syntax

value = chan.IsBalanced(logicalPort)

Variable

(Type) - Description

balTopology

A BalancedTopology (object)

value

(boolean) - Returned value is either:

False  - Logical port number is NOT balanced.

True - Logical port number IS balanced.

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 3 is queried and "True" is returned.

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

C++ Syntax

HRESULT get_IsBalanced(long logicalPort, VARIANT_BOOL *bBalanced);

Interface

IBalancedTopology3