Section: Visualization Toolkit Graphics Classes
To create an instance of class vtkRearrangeFields, simply invoke its constructor as follows
obj = vtkRearrangeFields
obj
is an instance of the vtkRearrangeFields class.
string = obj.GetClassName ()
int = obj.IsA (string name)
vtkRearrangeFields = obj.NewInstance ()
vtkRearrangeFields = obj.SafeDownCast (vtkObject o)
int = obj.AddOperation (int operationType, int attributeType, int fromFieldLoc, int toFieldLoc)
- Add an operation which copies an attribute's field (data array) from
one field data to another. Returns an operation id which can later
be used to remove the operation.
int = obj.AddOperation (int operationType, string name, int fromFieldLoc, int toFieldLoc)
- Add an operation which copies a field (data array) from one field
data to another. Returns an operation id which can later
be used to remove the operation.
int = obj.AddOperation (string operationType, string attributeType, string fromFieldLoc, string toFieldLoc)
- Helper method used by other language bindings. Allows the caller to
specify arguments as strings instead of enums.Returns an operation id
which can later be used to remove the operation.
int = obj.RemoveOperation (int operationId)
- Remove an operation with the given id.
int = obj.RemoveOperation (int operationType, int attributeType, int fromFieldLoc, int toFieldLoc)
- Remove an operation with the given signature. See AddOperation
for details.
int = obj.RemoveOperation (int operationType, string name, int fromFieldLoc, int toFieldLoc)
- Remove an operation with the given signature. See AddOperation
for details.
int = obj.RemoveOperation (string operationType, string attributeType, string fromFieldLoc, string toFieldLoc)
- Remove an operation with the given signature. See AddOperation
for details.
obj.RemoveAllOperations ()