CablePath

A cable path.

Example

app = cf.GetApplication()
project = app:NewProject()

    -- Add a cable path to the model
    
corners = {cf.Point(0,0,0), cf.Point(0,1,0), cf.Point(1,1,0), cf.Point(1,0,0)}
path = project.Cables.Paths:Add(corners)

    -- Change the label of the path
    
path.Label = "MyPath"

Inheritance

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

Usage locations (object properties)

The following objects have properties using the CablePath object:

Property List

EndTerminal
The cable path end terminal. (Read only CablePathTerminal)
Label
The object label. (Read/Write string)
StartTerminal
The cable path start terminal. (Read only CablePathTerminal)

Method List

Delete ()
Deletes the cable path.
Duplicate ()
Duplicate the cable path. (Returns a CablePath object.)

Property Details

EndTerminal
The cable path end terminal.
Type
CablePathTerminal
Access
Read only
Label
The object label.
Type
string
Access
Read/Write
StartTerminal
The cable path start terminal.
Type
CablePathTerminal
Access
Read only

Method Details

Delete ()
Deletes the cable path.
Duplicate ()
Duplicate the cable path.
Return
CablePath
The duplicated entity.