ActiViz .NET
5.8.0
|
vtkStringArray - a vtkAbstractArray subclass for strings More...
Public Member Functions | |
vtkStringArray (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
vtkStringArray () | |
Undocumented Block. | |
override int | Allocate (int sz, int ext) |
Allocate memory for this array. Delete old storage only if necessary. Note that ext is no longer used. | |
override void | ClearLookup () |
Delete the associated fast lookup data structure on this array, if it exists. The lookup will be rebuilt on the next call to a lookup function. | |
override void | DataChanged () |
Tell the array explicitly that the data has changed. This is only necessary to call when you modify the array contents without using the array's API (i.e. you retrieve a pointer to the data and modify the array contents). You need to call this so that the fast lookup will know to rebuild itself. Otherwise, the lookup functions will give incorrect results. | |
virtual void | DataElementChanged (int id) |
Tell the array explicitly that a single data element has changed. Like DataChanged(), then is only necessary when you modify the array contents without using the array's API. | |
override void | DeepCopy (vtkAbstractArray aa) |
Deep copy of another string array. Will complain and change nothing if the array passed in is not a vtkStringArray. | |
override uint | GetActualMemorySize () |
Return the memory in kilobytes consumed by this data array. Used to support streaming and reading/writing data. The value returned is guaranteed to be greater than or equal to the memory required to actually represent the data represented by this object. The information returned is valid only after the pipeline has been updated. | |
override int | GetDataSize () |
Returns the size of the data in DataTypeSize units. Thus, the number of bytes for the data can be computed by GetDataSize() * GetDataTypeSize(). The size computation includes the string termination character for each string. | |
override int | GetDataType () |
Get the data type. | |
override int | GetDataTypeSize () |
Return the size of the data type. WARNING: This may not mean what you expect with strings. It will return sizeof(vtkstd::string) and not take into account the data included in any particular string. | |
override int | GetElementComponentSize () |
Specify the number of values for this object to hold. Does an allocation as well as setting the MaxId ivar. Used in conjunction with SetValue() method for fast insertion. | |
int | GetNumberOfElementComponents () |
Specify the number of values for this object to hold. Does an allocation as well as setting the MaxId ivar. Used in conjunction with SetValue() method for fast insertion. | |
int | GetNumberOfValues () |
Specify the number of values for this object to hold. Does an allocation as well as setting the MaxId ivar. Used in conjunction with SetValue() method for fast insertion. | |
override void | GetTuples (vtkIdList ptIds, vtkAbstractArray output) |
Given a list of indices, return an array of values. You must insure that the output array has been previously allocated with enough space to hold the data and that the types match sufficiently to allow conversion (if necessary). | |
override void | GetTuples (int p1, int p2, vtkAbstractArray output) |
Get the values for the range of indices specified (i.e., p1->p2 inclusive). You must insure that the output array has been previously allocated with enough space to hold the data and that the type of the output array is compatible with the type of this array. | |
override IntPtr | GetVoidPointer (int id) |
Set a value in the array form a variant. Insert a value into the array from a variant. | |
override void | Initialize () |
Release storage and reset array to initial state. | |
override int | InsertNextTuple (int j, vtkAbstractArray source) |
Insert the jth tuple in the source array, at the end in this array. Note that memory allocation is performed as necessary to hold the data. Returns the location at which the data was inserted. | |
int | InsertNextValue (string f) |
Set a value in the array form a variant. Insert a value into the array from a variant. | |
override void | InsertTuple (int i, int j, vtkAbstractArray source) |
Insert the jth tuple in the source array, at ith location in this array. Note that memory allocation is performed as necessary to hold the data. | |
void | InsertValue (int id, string val) |
Specify the number of values for this object to hold. Does an allocation as well as setting the MaxId ivar. Used in conjunction with SetValue() method for fast insertion. | |
override void | InterpolateTuple (int i, vtkIdList ptIndices, vtkAbstractArray source, IntPtr weights) |
Set the ith tuple in this array as the interpolated tuple value, given the ptIndices in the source array and associated interpolation weights. This method assumes that the two arrays are of the same type and strcuture. | |
override void | InterpolateTuple (int i, int id1, vtkAbstractArray source1, int id2, vtkAbstractArray source2, double t) |
Description Insert the ith tuple in this array as interpolated from the two values, p1 and p2, and an interpolation factor, t. The interpolation factor ranges from (0,1), with t=0 located at p1. This method assumes that the three arrays are of the same type. p1 is value at index id1 in source1, while, p2 is value at index id2 in source2. | |
override int | IsA (string type) |
Undocumented Block. | |
override int | IsNumeric () |
Get the data type. | |
int | LookupValue (string value) |
Return the indices where a specific value appears. | |
void | LookupValue (string value, vtkIdList ids) |
Return the indices where a specific value appears. | |
new vtkStringArray | NewInstance () |
Undocumented Block. | |
override vtkArrayIterator | NewIterator () |
Returns a vtkArrayIteratorTemplate<vtkStdString>. | |
override int | Resize (int numTuples) |
Resize the array while conserving the data. | |
override void | SetNumberOfTuples (int number) |
Set the number of tuples (a component group) in the array. Note that this may allocate space depending on the number of components. | |
void | SetNumberOfValues (int number) |
Specify the number of values for this object to hold. Does an allocation as well as setting the MaxId ivar. Used in conjunction with SetValue() method for fast insertion. | |
override void | SetTuple (int i, int j, vtkAbstractArray source) |
Set the tuple at the ith location using the jth tuple in the source array. This method assumes that the two arrays have the same type and structure. Note that range checking and memory allocation is not performed; use in conjunction with SetNumberOfTuples() to allocate space. | |
void | SetValue (int id, string value) |
Get the data at a particular index. | |
override void | SetVoidArray (IntPtr array, int size, int save) |
Deep copy of another string array. Will complain and change nothing if the array passed in is not a vtkStringArray. | |
override void | Squeeze () |
Free any unnecessary memory. Resize object to just fit data requirement. Reclaims extra memory. | |
string | GetValue (long id) |
Get the data at a particular index. | |
Static Public Member Functions | |
static new vtkStringArray | New () |
Undocumented Block. | |
static new int | IsTypeOf (string type) |
Undocumented Block. | |
static new vtkStringArray | SafeDownCast (vtkObjectBase o) |
Undocumented Block. | |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkStringArray" |
Automatically generated type registration mechanics. | |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "14vtkStringArray" |
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 IntPtr | vtkStringArray_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal int | vtkStringArray_Allocate_01 (HandleRef pThis, int sz, int ext) |
static internal void | vtkStringArray_ClearLookup_02 (HandleRef pThis) |
static internal void | vtkStringArray_DataChanged_03 (HandleRef pThis) |
static internal void | vtkStringArray_DataElementChanged_04 (HandleRef pThis, int id) |
static internal void | vtkStringArray_DeepCopy_05 (HandleRef pThis, HandleRef aa) |
static internal uint | vtkStringArray_GetActualMemorySize_06 (HandleRef pThis) |
static internal int | vtkStringArray_GetDataSize_07 (HandleRef pThis) |
static internal int | vtkStringArray_GetDataType_08 (HandleRef pThis) |
static internal int | vtkStringArray_GetDataTypeSize_09 (HandleRef pThis) |
static internal int | vtkStringArray_GetElementComponentSize_10 (HandleRef pThis) |
static internal int | vtkStringArray_GetNumberOfElementComponents_11 (HandleRef pThis) |
static internal int | vtkStringArray_GetNumberOfValues_12 (HandleRef pThis) |
static internal void | vtkStringArray_GetTuples_13 (HandleRef pThis, HandleRef ptIds, HandleRef output) |
static internal void | vtkStringArray_GetTuples_14 (HandleRef pThis, int p1, int p2, HandleRef output) |
static internal IntPtr | vtkStringArray_GetVoidPointer_15 (HandleRef pThis, int id) |
static internal void | vtkStringArray_Initialize_16 (HandleRef pThis) |
static internal int | vtkStringArray_InsertNextTuple_17 (HandleRef pThis, int j, HandleRef source) |
static internal int | vtkStringArray_InsertNextValue_18 (HandleRef pThis, string f) |
static internal void | vtkStringArray_InsertTuple_19 (HandleRef pThis, int i, int j, HandleRef source) |
static internal void | vtkStringArray_InsertValue_20 (HandleRef pThis, int id, string val) |
static internal void | vtkStringArray_InterpolateTuple_21 (HandleRef pThis, int i, HandleRef ptIndices, HandleRef source, IntPtr weights) |
static internal void | vtkStringArray_InterpolateTuple_22 (HandleRef pThis, int i, int id1, HandleRef source1, int id2, HandleRef source2, double t) |
static internal int | vtkStringArray_IsA_23 (HandleRef pThis, string type) |
static internal int | vtkStringArray_IsNumeric_24 (HandleRef pThis) |
static internal int | vtkStringArray_IsTypeOf_25 (string type) |
static internal int | vtkStringArray_LookupValue_26 (HandleRef pThis, string value) |
static internal void | vtkStringArray_LookupValue_27 (HandleRef pThis, string value, HandleRef ids) |
static internal IntPtr | vtkStringArray_NewInstance_29 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkStringArray_NewIterator_30 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal int | vtkStringArray_Resize_31 (HandleRef pThis, int numTuples) |
static internal IntPtr | vtkStringArray_SafeDownCast_32 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkStringArray_SetNumberOfTuples_33 (HandleRef pThis, int number) |
static internal void | vtkStringArray_SetNumberOfValues_34 (HandleRef pThis, int number) |
static internal void | vtkStringArray_SetTuple_35 (HandleRef pThis, int i, int j, HandleRef source) |
static internal void | vtkStringArray_SetValue_36 (HandleRef pThis, int id, string value) |
static internal void | vtkStringArray_SetVoidArray_37 (HandleRef pThis, IntPtr array, int size, int save) |
static internal void | vtkStringArray_Squeeze_38 (HandleRef pThis) |
static internal string | vtkStringArray_GetValue (HandleRef pThis, long id) |
Static Private Member Functions | |
static | vtkStringArray () |
Automatically generated type registration mechanics. |
vtkStringArray - a vtkAbstractArray subclass for strings
Description Points and cells may sometimes have associated data that are stored as strings, e.g. labels for information visualization projects. This class provides a clean way to store and access those strings. Thanks Andy Wilson (atwilso@sandia.gov) wrote this class.
static Kitware.VTK.vtkStringArray.vtkStringArray | ( | ) | [static, private] |
Automatically generated type registration mechanics.
Kitware.VTK.vtkStringArray.vtkStringArray | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
Undocumented Block.
override int Kitware.VTK.vtkStringArray.Allocate | ( | int | sz, |
int | ext | ||
) | [virtual] |
Allocate memory for this array. Delete old storage only if necessary. Note that ext is no longer used.
Reimplemented from Kitware.VTK.vtkAbstractArray.
override void Kitware.VTK.vtkStringArray.ClearLookup | ( | ) | [virtual] |
Delete the associated fast lookup data structure on this array, if it exists. The lookup will be rebuilt on the next call to a lookup function.
Reimplemented from Kitware.VTK.vtkAbstractArray.
override void Kitware.VTK.vtkStringArray.DataChanged | ( | ) | [virtual] |
Tell the array explicitly that the data has changed. This is only necessary to call when you modify the array contents without using the array's API (i.e. you retrieve a pointer to the data and modify the array contents). You need to call this so that the fast lookup will know to rebuild itself. Otherwise, the lookup functions will give incorrect results.
Reimplemented from Kitware.VTK.vtkAbstractArray.
virtual void Kitware.VTK.vtkStringArray.DataElementChanged | ( | int | id | ) | [virtual] |
Tell the array explicitly that a single data element has changed. Like DataChanged(), then is only necessary when you modify the array contents without using the array's API.
override void Kitware.VTK.vtkStringArray.DeepCopy | ( | vtkAbstractArray | aa | ) | [virtual] |
Deep copy of another string array. Will complain and change nothing if the array passed in is not a vtkStringArray.
Reimplemented from Kitware.VTK.vtkAbstractArray.
override void Kitware.VTK.vtkStringArray.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.vtkAbstractArray.
override uint Kitware.VTK.vtkStringArray.GetActualMemorySize | ( | ) | [virtual] |
Return the memory in kilobytes consumed by this data array. Used to support streaming and reading/writing data. The value returned is guaranteed to be greater than or equal to the memory required to actually represent the data represented by this object. The information returned is valid only after the pipeline has been updated.
This function takes into account the size of the contents of the strings as well as the string containers themselves.
Reimplemented from Kitware.VTK.vtkAbstractArray.
override int Kitware.VTK.vtkStringArray.GetDataSize | ( | ) | [virtual] |
Returns the size of the data in DataTypeSize units. Thus, the number of bytes for the data can be computed by GetDataSize() * GetDataTypeSize(). The size computation includes the string termination character for each string.
Reimplemented from Kitware.VTK.vtkAbstractArray.
override int Kitware.VTK.vtkStringArray.GetDataType | ( | ) | [virtual] |
Get the data type.
Reimplemented from Kitware.VTK.vtkAbstractArray.
override int Kitware.VTK.vtkStringArray.GetDataTypeSize | ( | ) | [virtual] |
Return the size of the data type. WARNING: This may not mean what you expect with strings. It will return sizeof(vtkstd::string) and not take into account the data included in any particular string.
Reimplemented from Kitware.VTK.vtkAbstractArray.
override int Kitware.VTK.vtkStringArray.GetElementComponentSize | ( | ) | [virtual] |
Specify the number of values for this object to hold. Does an allocation as well as setting the MaxId ivar. Used in conjunction with SetValue() method for fast insertion.
Reimplemented from Kitware.VTK.vtkAbstractArray.
Specify the number of values for this object to hold. Does an allocation as well as setting the MaxId ivar. Used in conjunction with SetValue() method for fast insertion.
Specify the number of values for this object to hold. Does an allocation as well as setting the MaxId ivar. Used in conjunction with SetValue() method for fast insertion.
override void Kitware.VTK.vtkStringArray.GetTuples | ( | vtkIdList | ptIds, |
vtkAbstractArray | output | ||
) | [virtual] |
Given a list of indices, return an array of values. You must insure that the output array has been previously allocated with enough space to hold the data and that the types match sufficiently to allow conversion (if necessary).
Reimplemented from Kitware.VTK.vtkAbstractArray.
override void Kitware.VTK.vtkStringArray.GetTuples | ( | int | p1, |
int | p2, | ||
vtkAbstractArray | output | ||
) | [virtual] |
Get the values for the range of indices specified (i.e., p1->p2 inclusive). You must insure that the output array has been previously allocated with enough space to hold the data and that the type of the output array is compatible with the type of this array.
Reimplemented from Kitware.VTK.vtkAbstractArray.
string Kitware.VTK.vtkStringArray.GetValue | ( | long | id | ) |
Get the data at a particular index.
override IntPtr Kitware.VTK.vtkStringArray.GetVoidPointer | ( | int | id | ) | [virtual] |
Set a value in the array form a variant. Insert a value into the array from a variant.
Reimplemented from Kitware.VTK.vtkAbstractArray.
override void Kitware.VTK.vtkStringArray.Initialize | ( | ) | [virtual] |
Release storage and reset array to initial state.
Reimplemented from Kitware.VTK.vtkAbstractArray.
override int Kitware.VTK.vtkStringArray.InsertNextTuple | ( | int | j, |
vtkAbstractArray | source | ||
) | [virtual] |
Insert the jth tuple in the source array, at the end in this array. Note that memory allocation is performed as necessary to hold the data. Returns the location at which the data was inserted.
Reimplemented from Kitware.VTK.vtkAbstractArray.
int Kitware.VTK.vtkStringArray.InsertNextValue | ( | string | f | ) |
Set a value in the array form a variant. Insert a value into the array from a variant.
override void Kitware.VTK.vtkStringArray.InsertTuple | ( | int | i, |
int | j, | ||
vtkAbstractArray | source | ||
) | [virtual] |
Insert the jth tuple in the source array, at ith location in this array. Note that memory allocation is performed as necessary to hold the data.
Reimplemented from Kitware.VTK.vtkAbstractArray.
void Kitware.VTK.vtkStringArray.InsertValue | ( | int | id, |
string | val | ||
) |
Specify the number of values for this object to hold. Does an allocation as well as setting the MaxId ivar. Used in conjunction with SetValue() method for fast insertion.
override void Kitware.VTK.vtkStringArray.InterpolateTuple | ( | int | i, |
vtkIdList | ptIndices, | ||
vtkAbstractArray | source, | ||
IntPtr | weights | ||
) | [virtual] |
Set the ith tuple in this array as the interpolated tuple value, given the ptIndices in the source array and associated interpolation weights. This method assumes that the two arrays are of the same type and strcuture.
Reimplemented from Kitware.VTK.vtkAbstractArray.
override void Kitware.VTK.vtkStringArray.InterpolateTuple | ( | int | i, |
int | id1, | ||
vtkAbstractArray | source1, | ||
int | id2, | ||
vtkAbstractArray | source2, | ||
double | t | ||
) | [virtual] |
Description Insert the ith tuple in this array as interpolated from the two values, p1 and p2, and an interpolation factor, t. The interpolation factor ranges from (0,1), with t=0 located at p1. This method assumes that the three arrays are of the same type. p1 is value at index id1 in source1, while, p2 is value at index id2 in source2.
Reimplemented from Kitware.VTK.vtkAbstractArray.
override int Kitware.VTK.vtkStringArray.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkAbstractArray.
override int Kitware.VTK.vtkStringArray.IsNumeric | ( | ) | [virtual] |
Get the data type.
Reimplemented from Kitware.VTK.vtkAbstractArray.
static new int Kitware.VTK.vtkStringArray.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkAbstractArray.
int Kitware.VTK.vtkStringArray.LookupValue | ( | string | value | ) |
Return the indices where a specific value appears.
void Kitware.VTK.vtkStringArray.LookupValue | ( | string | value, |
vtkIdList | ids | ||
) |
Return the indices where a specific value appears.
static new vtkStringArray Kitware.VTK.vtkStringArray.New | ( | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkObject.
Undocumented Block.
Reimplemented from Kitware.VTK.vtkAbstractArray.
override vtkArrayIterator Kitware.VTK.vtkStringArray.NewIterator | ( | ) | [virtual] |
Returns a vtkArrayIteratorTemplate<vtkStdString>.
Reimplemented from Kitware.VTK.vtkAbstractArray.
override int Kitware.VTK.vtkStringArray.Resize | ( | int | numTuples | ) | [virtual] |
Resize the array while conserving the data.
Reimplemented from Kitware.VTK.vtkAbstractArray.
static new vtkStringArray Kitware.VTK.vtkStringArray.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkAbstractArray.
override void Kitware.VTK.vtkStringArray.SetNumberOfTuples | ( | int | number | ) | [virtual] |
Set the number of tuples (a component group) in the array. Note that this may allocate space depending on the number of components.
Reimplemented from Kitware.VTK.vtkAbstractArray.
void Kitware.VTK.vtkStringArray.SetNumberOfValues | ( | int | number | ) |
Specify the number of values for this object to hold. Does an allocation as well as setting the MaxId ivar. Used in conjunction with SetValue() method for fast insertion.
override void Kitware.VTK.vtkStringArray.SetTuple | ( | int | i, |
int | j, | ||
vtkAbstractArray | source | ||
) | [virtual] |
Set the tuple at the ith location using the jth tuple in the source array. This method assumes that the two arrays have the same type and structure. Note that range checking and memory allocation is not performed; use in conjunction with SetNumberOfTuples() to allocate space.
Reimplemented from Kitware.VTK.vtkAbstractArray.
void Kitware.VTK.vtkStringArray.SetValue | ( | int | id, |
string | value | ||
) |
Get the data at a particular index.
override void Kitware.VTK.vtkStringArray.SetVoidArray | ( | IntPtr | array, |
int | size, | ||
int | save | ||
) | [virtual] |
Deep copy of another string array. Will complain and change nothing if the array passed in is not a vtkStringArray.
Reimplemented from Kitware.VTK.vtkAbstractArray.
override void Kitware.VTK.vtkStringArray.Squeeze | ( | ) | [virtual] |
Free any unnecessary memory. Resize object to just fit data requirement. Reclaims extra memory.
Reimplemented from Kitware.VTK.vtkAbstractArray.
static internal int Kitware.VTK.vtkStringArray.vtkStringArray_Allocate_01 | ( | HandleRef | pThis, |
int | sz, | ||
int | ext | ||
) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_ClearLookup_02 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_DataChanged_03 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_DataElementChanged_04 | ( | HandleRef | pThis, |
int | id | ||
) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_DeepCopy_05 | ( | HandleRef | pThis, |
HandleRef | aa | ||
) | [private] |
static internal uint Kitware.VTK.vtkStringArray.vtkStringArray_GetActualMemorySize_06 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkStringArray.vtkStringArray_GetDataSize_07 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkStringArray.vtkStringArray_GetDataType_08 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkStringArray.vtkStringArray_GetDataTypeSize_09 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkStringArray.vtkStringArray_GetElementComponentSize_10 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkStringArray.vtkStringArray_GetNumberOfElementComponents_11 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkStringArray.vtkStringArray_GetNumberOfValues_12 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_GetTuples_13 | ( | HandleRef | pThis, |
HandleRef | ptIds, | ||
HandleRef | output | ||
) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_GetTuples_14 | ( | HandleRef | pThis, |
int | p1, | ||
int | p2, | ||
HandleRef | output | ||
) | [private] |
static internal string Kitware.VTK.vtkStringArray.vtkStringArray_GetValue | ( | HandleRef | pThis, |
long | id | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkStringArray.vtkStringArray_GetVoidPointer_15 | ( | HandleRef | pThis, |
int | id | ||
) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_Initialize_16 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkStringArray.vtkStringArray_InsertNextTuple_17 | ( | HandleRef | pThis, |
int | j, | ||
HandleRef | source | ||
) | [private] |
static internal int Kitware.VTK.vtkStringArray.vtkStringArray_InsertNextValue_18 | ( | HandleRef | pThis, |
string | f | ||
) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_InsertTuple_19 | ( | HandleRef | pThis, |
int | i, | ||
int | j, | ||
HandleRef | source | ||
) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_InsertValue_20 | ( | HandleRef | pThis, |
int | id, | ||
string | val | ||
) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_InterpolateTuple_21 | ( | HandleRef | pThis, |
int | i, | ||
HandleRef | ptIndices, | ||
HandleRef | source, | ||
IntPtr | weights | ||
) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_InterpolateTuple_22 | ( | HandleRef | pThis, |
int | i, | ||
int | id1, | ||
HandleRef | source1, | ||
int | id2, | ||
HandleRef | source2, | ||
double | t | ||
) | [private] |
static internal int Kitware.VTK.vtkStringArray.vtkStringArray_IsA_23 | ( | HandleRef | pThis, |
string | type | ||
) | [private] |
static internal int Kitware.VTK.vtkStringArray.vtkStringArray_IsNumeric_24 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkStringArray.vtkStringArray_IsTypeOf_25 | ( | string | type | ) | [private] |
static internal int Kitware.VTK.vtkStringArray.vtkStringArray_LookupValue_26 | ( | HandleRef | pThis, |
string | value | ||
) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_LookupValue_27 | ( | HandleRef | pThis, |
string | value, | ||
HandleRef | ids | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkStringArray.vtkStringArray_New | ( | ref uint | mteStatus, |
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkStringArray.vtkStringArray_NewInstance_29 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkStringArray.vtkStringArray_NewIterator_30 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal int Kitware.VTK.vtkStringArray.vtkStringArray_Resize_31 | ( | HandleRef | pThis, |
int | numTuples | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkStringArray.vtkStringArray_SafeDownCast_32 | ( | HandleRef | o, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_SetNumberOfTuples_33 | ( | HandleRef | pThis, |
int | number | ||
) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_SetNumberOfValues_34 | ( | HandleRef | pThis, |
int | number | ||
) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_SetTuple_35 | ( | HandleRef | pThis, |
int | i, | ||
int | j, | ||
HandleRef | source | ||
) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_SetValue_36 | ( | HandleRef | pThis, |
int | id, | ||
string | value | ||
) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_SetVoidArray_37 | ( | HandleRef | pThis, |
IntPtr | array, | ||
int | size, | ||
int | save | ||
) | [private] |
static internal void Kitware.VTK.vtkStringArray.vtkStringArray_Squeeze_38 | ( | HandleRef | pThis | ) | [private] |
new readonly string Kitware.VTK.vtkStringArray.MRClassNameKey = "14vtkStringArray" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkAbstractArray.
new const string Kitware.VTK.vtkStringArray.MRFullTypeName = "Kitware.VTK.vtkStringArray" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkAbstractArray.