Python API 2.0 Reference: OpenMaya.MCallbackIdArray Class Reference

+ Inheritance diagram for OpenMaya.MCallbackIdArray:

Public Member Functions

__add__ ()
 
__contains__ ()
 
__delitem__ ()
 
__getitem__ ()
 
__iadd__ ()
 
__imul__ ()
 
__init__ ()
 
__len__ ()
 
__mul__ ()
 
__repr__ ()
 
__rmul__ ()
 
__setitem__ ()
 
__str__ ()
 
append ()
 
clear ()
 
copy ()
 
insert ()
 
remove ()
 
setLength ()
 

Static Public Member Functions

__new__ ()
 

Properties

 sizeIncrement
 

Detailed Description

Array of MCallbackId values.

The MCallbackIdArray class provides an array of MCallbackId elements using a common array interface and value semantics. See Working with M*Array Classes for more details.

 


Constructor & Destructor Documentation

OpenMaya.MCallbackIdArray.__init__ ( )
Initialize self.  See help(type(self)) for accurate signature.

Member Function Documentation

OpenMaya.MCallbackIdArray.__add__ ( )
Return self+value.
OpenMaya.MCallbackIdArray.__contains__ ( )
Return key in self.
OpenMaya.MCallbackIdArray.__delitem__ ( )
Delete self[key].
OpenMaya.MCallbackIdArray.__getitem__ ( )
Return self[key].
OpenMaya.MCallbackIdArray.__iadd__ ( )
Implement self+=value.
OpenMaya.MCallbackIdArray.__imul__ ( )
Implement self*=value.
OpenMaya.MCallbackIdArray.__len__ ( )
Return len(self).
OpenMaya.MCallbackIdArray.__mul__ ( )
Return self*value.
OpenMaya.MCallbackIdArray.__new__ ( )
static
Create and return a new object.  See help(type) for accurate signature.
OpenMaya.MCallbackIdArray.__repr__ ( )
Return repr(self).
OpenMaya.MCallbackIdArray.__rmul__ ( )
Return value*self.
OpenMaya.MCallbackIdArray.__setitem__ ( )
Set self[key] to value.
OpenMaya.MCallbackIdArray.__str__ ( )
Return str(self).
OpenMaya.MCallbackIdArray.append ( )
Add a value to the end of the array.
OpenMaya.MCallbackIdArray.clear ( )
Remove all elements from the array.
OpenMaya.MCallbackIdArray.copy ( )
Replace the array contents with that of another or of a compatible Python sequence.
OpenMaya.MCallbackIdArray.insert ( )
Insert a new value into the array at the given index.
OpenMaya.MCallbackIdArray.remove ( )
Remove an element from the array.
OpenMaya.MCallbackIdArray.setLength ( )
Grow or shrink the array to contain a specific number of elements.

Property Documentation

OpenMaya.MCallbackIdArray.sizeIncrement
static
 Number of elements by which to grow the array when necessary.