Python API 2.0 Reference
OpenMaya.MDagPathArray Class Reference
+ Inheritance diagram for OpenMaya.MDagPathArray:

Public Member Functions

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

Static Public Member Functions

def __new__ ()
 

Properties

 sizeIncrement = property(...)
 

Detailed Description

Array of MDagPath values.

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

 


Constructor & Destructor Documentation

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

Member Function Documentation

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

Property Documentation

OpenMaya.MDagPathArray.sizeIncrement = property(...)
static
 Number of elements by which to grow the array when necessary.