Read / Write
About User Characterization

ConnectorType Property


Description

Sets or queries the connector type for the specified port.

VB Syntax

ecalUser.ConnectorType (port) = value

Variable

(Type) - Description

ecalUser

An ECalUserCharacterizer (object)

port

(Enum) ECal port for which connector type is to be set. Choose from:

1 or naECalPort_A

2 or naECalPort_B

3 or naECalPort_C

4 or naECalPort_D

value

(String) - Connector type.

When the User Characterization is to be stored in the ECal module, then the connector type is limited to a Factory-defined connector type. See the list.

When the User Characterization is to be stored in PNA disk memory, then the connector type can also be a User-defined connector type.

Return Type

String

Default

"" (Empty String)

Examples

ecalUser.ConnectorType(naECalPort_B) = "APC 3.5 male" ' Write

Value = ecalUser.ConnectorType(naECalPort_B)

C++ Syntax

HRESULT get_ConnectorType(NAECalPort port, BSTR *connector);

HRESULT put_ConnectorType(NAECalPort port, BSTR connector);

Interface

IECalUserCharacterizer