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