ActiViz .NET
5.8.0
|
vtkArrayIterator - Abstract superclass to iterate over elements in an vtkAbstractArray. More...
Public Member Functions | |
vtkArrayIterator (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
virtual int | GetDataType () |
Description Get the data type from the underlying array. Returns 0 if no underlying array is present. | |
virtual void | Initialize (vtkAbstractArray array) |
Set the array this iterator will iterate over. After Initialize() has been called, the iterator is valid so long as the Array has not been modified (except using the iterator itself). If the array is modified, the iterator must be re-intialized. | |
override int | IsA (string type) |
Undocumented Block. | |
new vtkArrayIterator | NewInstance () |
Undocumented Block. | |
Static Public Member Functions | |
static new int | IsTypeOf (string type) |
Undocumented Block. | |
static new vtkArrayIterator | SafeDownCast (vtkObjectBase o) |
Undocumented Block. | |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkArrayIterator" |
Automatically generated type registration mechanics. | |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "16vtkArrayIterator" |
Automatically generated type registration mechanics. | |
Protected Member Functions | |
override void | Dispose (bool disposing) |
Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly. | |
Private Member Functions | |
static internal int | vtkArrayIterator_GetDataType_01 (HandleRef pThis) |
static internal void | vtkArrayIterator_Initialize_02 (HandleRef pThis, HandleRef array) |
static internal int | vtkArrayIterator_IsA_03 (HandleRef pThis, string type) |
static internal int | vtkArrayIterator_IsTypeOf_04 (string type) |
static internal IntPtr | vtkArrayIterator_NewInstance_05 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkArrayIterator_SafeDownCast_06 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
Static Private Member Functions | |
static | vtkArrayIterator () |
Automatically generated type registration mechanics. |
vtkArrayIterator - Abstract superclass to iterate over elements in an vtkAbstractArray.
Description vtkArrayIterator is used to iterate over elements in any vtkAbstractArray subclass. The vtkArrayIteratorTemplateMacro is used to centralize the set of types supported by Execute methods. It also avoids duplication of long switch statement case lists.
Note that in this macro VTK_TT is defined to be the type of the iterator for the given type of array. One must include the vtkArrayIteratorIncludes.h header file to provide for extending of this macro by addition of new iterators.
Example usage:
vtkArrayIter* iter = array->NewIterator(); switch(array->GetDataType()) { vtkArrayIteratorTemplateMacro(myFunc(static_cast<VTK_TT*>(iter), arg2)); } iter->Delete();
static Kitware.VTK.vtkArrayIterator.vtkArrayIterator | ( | ) | [static, private] |
Automatically generated type registration mechanics.
Kitware.VTK.vtkArrayIterator.vtkArrayIterator | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
override void Kitware.VTK.vtkArrayIterator.Dispose | ( | bool | disposing | ) | [protected] |
Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.
Reimplemented from Kitware.VTK.vtkObject.
Reimplemented in Kitware.VTK.vtkBitArrayIterator.
virtual int Kitware.VTK.vtkArrayIterator.GetDataType | ( | ) | [virtual] |
Description Get the data type from the underlying array. Returns 0 if no underlying array is present.
Reimplemented in Kitware.VTK.vtkBitArrayIterator.
virtual void Kitware.VTK.vtkArrayIterator.Initialize | ( | vtkAbstractArray | array | ) | [virtual] |
Set the array this iterator will iterate over. After Initialize() has been called, the iterator is valid so long as the Array has not been modified (except using the iterator itself). If the array is modified, the iterator must be re-intialized.
Reimplemented in Kitware.VTK.vtkBitArrayIterator.
override int Kitware.VTK.vtkArrayIterator.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkObject.
Reimplemented in Kitware.VTK.vtkBitArrayIterator.
static new int Kitware.VTK.vtkArrayIterator.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkObject.
Reimplemented in Kitware.VTK.vtkBitArrayIterator.
Undocumented Block.
Reimplemented from Kitware.VTK.vtkObject.
Reimplemented in Kitware.VTK.vtkBitArrayIterator.
static new vtkArrayIterator Kitware.VTK.vtkArrayIterator.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkObject.
Reimplemented in Kitware.VTK.vtkBitArrayIterator.
static internal int Kitware.VTK.vtkArrayIterator.vtkArrayIterator_GetDataType_01 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkArrayIterator.vtkArrayIterator_Initialize_02 | ( | HandleRef | pThis, |
HandleRef | array | ||
) | [private] |
static internal int Kitware.VTK.vtkArrayIterator.vtkArrayIterator_IsA_03 | ( | HandleRef | pThis, |
string | type | ||
) | [private] |
static internal int Kitware.VTK.vtkArrayIterator.vtkArrayIterator_IsTypeOf_04 | ( | string | type | ) | [private] |
static internal IntPtr Kitware.VTK.vtkArrayIterator.vtkArrayIterator_NewInstance_05 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkArrayIterator.vtkArrayIterator_SafeDownCast_06 | ( | HandleRef | o, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
new readonly string Kitware.VTK.vtkArrayIterator.MRClassNameKey = "16vtkArrayIterator" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkObject.
Reimplemented in Kitware.VTK.vtkBitArrayIterator.
new const string Kitware.VTK.vtkArrayIterator.MRFullTypeName = "Kitware.VTK.vtkArrayIterator" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkObject.
Reimplemented in Kitware.VTK.vtkBitArrayIterator.