CableConnectorPin

A cable connector pin.

Example

app = cf.GetApplication()
project = app:OpenFile(FEKO_HOME..[[/shared/Resources/Automation/Cables.cfx]])

    -- Retrieve a 'CableHarness'

cableHarness = project.Cables.Harnesses:Item("CableHarness1")

    -- Retrieve a 'CableConnectorPin' from a 'CableConnector'

cableConnectorPin = cableHarness.Connectors["CableConnector2"].Pins["Pin2"]

    -- Retrieve the terminal associated with the 'CableConnectorPin'

terminal = cableConnectorPin.Terminal

Usage locations (object properties)

The following objects have properties using the CableConnectorPin object:

Property List

Label
The pin label. (Read only string)
Terminal
The terminal associated with the pin used to connect to circuit components. (Read only Terminal)
Type
The object type string. (Read only string)

Constructor Function List

CreateNonePin ()
Method returns a none cable connector pin, used to set a pin of a cable instance unconnected. (Returns a CableConnectorPin object.)

Property Details

Label
The pin label.
Type
string
Access
Read only
Terminal
The terminal associated with the pin used to connect to circuit components.
Type
Terminal
Access
Read only
Type
The object type string.
Type
string
Access
Read only

Static Function Details

CreateNonePin ()
Method returns a none cable connector pin, used to set a pin of a cable instance unconnected.
Return
CableConnectorPin
A default cable connector pin with no id or connector.