OpenMaya.MPlugArray Class Reference
Array of MPlug values.
The MPlugArray class provides an array of MPlug elements using a common array interface and reference semantics. See Working with M*Array Classes for more details.
OpenMaya.MPlugArray.__init__ |
( |
| ) |
|
x.__init__(...) initializes x; see help(type(x)) for signature
OpenMaya.MPlugArray.__add__ |
( |
| ) |
|
OpenMaya.MPlugArray.__contains__ |
( |
| ) |
|
x.__contains__(y) <==> y in x
OpenMaya.MPlugArray.__delitem__ |
( |
| ) |
|
x.__delitem__(y) <==> del x[y]
OpenMaya.MPlugArray.__delslice__ |
( |
| ) |
|
x.__delslice__(i, j) <==> del x[i:j]
Use of negative indices is not supported.
OpenMaya.MPlugArray.__getitem__ |
( |
| ) |
|
x.__getitem__(y) <==> x[y]
OpenMaya.MPlugArray.__getslice__ |
( |
| ) |
|
x.__getslice__(i, j) <==> x[i:j]
Use of negative indices is not supported.
OpenMaya.MPlugArray.__iadd__ |
( |
| ) |
|
OpenMaya.MPlugArray.__imul__ |
( |
| ) |
|
OpenMaya.MPlugArray.__len__ |
( |
| ) |
|
OpenMaya.MPlugArray.__mul__ |
( |
| ) |
|
OpenMaya.MPlugArray.__repr__ |
( |
| ) |
|
x.__repr__() <==> repr(x)
OpenMaya.MPlugArray.__rmul__ |
( |
| ) |
|
OpenMaya.MPlugArray.__setitem__ |
( |
| ) |
|
x.__setitem__(i, y) <==> x[i]=y
OpenMaya.MPlugArray.__setslice__ |
( |
| ) |
|
x.__setslice__(i, j, y) <==> x[i:j]=y
Use of negative indices is not supported.
OpenMaya.MPlugArray.__str__ |
( |
| ) |
|
OpenMaya.MPlugArray.append |
( |
| ) |
|
Add a value to the end of the array.
OpenMaya.MPlugArray.clear |
( |
| ) |
|
Remove all elements from the array.
OpenMaya.MPlugArray.copy |
( |
| ) |
|
Replace the array contents with that of another or of a compatible Python sequence.
OpenMaya.MPlugArray.insert |
( |
| ) |
|
Insert a new value into the array at the given index.
OpenMaya.MPlugArray.remove |
( |
| ) |
|
Remove an element from the array.
OpenMaya.MPlugArray.setLength |
( |
| ) |
|
Grow or shrink the array to contain a specific number of elements.
OpenMaya.MPlugArray.sizeIncrement |
|
static |
Number of elements by which to grow the array when necessary.