SchematicWire

A schematic wire connecting two terminals.

Example

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

cableSchematicComponent = project.Cables.Harnesses[1].SchematicComponents:Item(1)
terminal = cableSchematicComponent.Terminals:Item(1)

    -- Delete a schematic wire connected to a cable schematic component
    
schematicWire = terminal.Wires:Item(1)
schematicWire:Delete()

Property List

EndTerminal
The terminal where the wire ends. (Read only Terminal)
Label
The object label. (Read only string)
StartTerminal
The terminal where the wire starts. (Read only Terminal)
Type
The object type string. (Read only string)

Method List

Delete ()
Remove the wire from the schematic.

Property Details

EndTerminal
The terminal where the wire ends.
Type
Terminal
Access
Read only
Label
The object label.
Type
string
Access
Read only
StartTerminal
The terminal where the wire starts.
Type
Terminal
Access
Read only
Type
The object type string.
Type
string
Access
Read only

Method Details

Delete ()
Remove the wire from the schematic.