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