CableSchematicComponent

A cable schematic component.

Example

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

    -- Get an existing 'CableHarness'

cableHarness = project.Cables.Harnesses["CableHarness1"]

    -- Rotate an existing schematic component clockwise by 90 degrees

app.Schematics:ShowCableSchematic(cableHarness)
component = cableHarness.SchematicComponents["Port1"]
component:Rotate()

Inheritance

The CableSchematicComponent object is derived from the SchematicSymbol object.

The following objects are derived (specialisations) from the CableSchematicComponent object:

Property List

Label
The object label. (Read/Write string)
Position
The schematic symbol position. (Read only SchematicSymbolPosition)

Collection List

Terminals
The collection of schematic terminals on the symbol. (TerminalCollection of Terminal.)

Method List

Delete ()
Deletes the component from the cable schematic.
Rotate ()
Rotates the symbol 90 degrees clockwise.

Property Details

Label
The object label.
Type
string
Access
Read/Write
Position
The schematic symbol position.
Type
SchematicSymbolPosition
Access
Read only

Collection Details

Terminals
The collection of schematic terminals on the symbol.
Type
TerminalCollection

Method Details

Delete ()
Deletes the component from the cable schematic.
Rotate ()
Rotates the symbol 90 degrees clockwise.