Manages the list of wave guides.
|
|
|
|
|
__contains__(x,
y)
y in x |
|
|
|
|
__delitem__(x,
y)
del x[y] |
|
|
|
|
|
|
|
|
|
|
__setitem__(x,
i,
y)
x[i]=y |
|
|
|
bool
|
append(iComponent)
Appends a wave guide to the list. |
|
|
|
WaveGuide
|
at(iName)
Returns the circuit component by name. |
|
|
|
None
|
|
|
bool
|
contains(iComponentDef)
Determines if the circuit component is in the list. |
|
|
|
int
|
index(iComponent)
Retrieves the index of a wave guide. |
|
|
|
bool
|
insert(iIndex,
iComponent)
Inserts a wave guide into the list. |
|
|
list{string}
|
names()
Returns the names of the wave guides in the list. |
|
|
|
bool
|
remove(iIndex)
Removes a circuit component. |
|
|
|
bool
|
replace(iIndex,
iComponent)
Replaces a circuit component. |
|
|
|
int
|
size()
Returns the size of the list. |
|
|
|
None
|
swap(iIndex,
iIndex)
Swaps two wave guides. |
|
|
|
|
undoableAppend(...)
No documentation available. |
|
|
|
|
undoableReplace(...)
No documentation available. |
|
|
|
Inherited from core.Selectable:
clone,
isSelected
Inherited from core.Updatable:
__enter__,
__exit__,
hash,
isValid,
reasonWhyInvalid
|