ActiViz .NET  5.8.0
Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Protected Member Functions | Private Member Functions | Static Private Member Functions
Kitware.VTK.vtkMergeTables Class Reference

vtkMergeTables - combine two tables More...

Inheritance diagram for Kitware.VTK.vtkMergeTables:
[legend]
Collaboration diagram for Kitware.VTK.vtkMergeTables:
[legend]

List of all members.

Public Member Functions

 vtkMergeTables (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkMergeTables ()
 Undocumented Block.
virtual string GetFirstTablePrefix ()
 The prefix to give to same-named fields from the first table. Default is "Table1.".
virtual bool GetMergeColumnsByName ()
 If on, merges columns with the same name. If off, keeps both columns, but calls one FirstTablePrefix + name, and the other SecondTablePrefix + name. Default is on.
virtual bool GetPrefixAllButMerged ()
 If on, all columns will have prefixes except merged columns. If off, only unmerged columns with the same name will have prefixes. Default is off.
virtual string GetSecondTablePrefix ()
 The prefix to give to same-named fields from the second table. Default is "Table2.".
override int IsA (string type)
 Undocumented Block.
virtual void MergeColumnsByNameOff ()
 If on, merges columns with the same name. If off, keeps both columns, but calls one FirstTablePrefix + name, and the other SecondTablePrefix + name. Default is on.
virtual void MergeColumnsByNameOn ()
 If on, merges columns with the same name. If off, keeps both columns, but calls one FirstTablePrefix + name, and the other SecondTablePrefix + name. Default is on.
new vtkMergeTables NewInstance ()
 Undocumented Block.
virtual void PrefixAllButMergedOff ()
 If on, all columns will have prefixes except merged columns. If off, only unmerged columns with the same name will have prefixes. Default is off.
virtual void PrefixAllButMergedOn ()
 If on, all columns will have prefixes except merged columns. If off, only unmerged columns with the same name will have prefixes. Default is off.
virtual void SetFirstTablePrefix (string _arg)
 The prefix to give to same-named fields from the first table. Default is "Table1.".
virtual void SetMergeColumnsByName (bool _arg)
 If on, merges columns with the same name. If off, keeps both columns, but calls one FirstTablePrefix + name, and the other SecondTablePrefix + name. Default is on.
virtual void SetPrefixAllButMerged (bool _arg)
 If on, all columns will have prefixes except merged columns. If off, only unmerged columns with the same name will have prefixes. Default is off.
virtual void SetSecondTablePrefix (string _arg)
 The prefix to give to same-named fields from the second table. Default is "Table2.".

Static Public Member Functions

static new vtkMergeTables New ()
 Undocumented Block.
static new int IsTypeOf (string type)
 Undocumented Block.
static new vtkMergeTables SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

new const string MRFullTypeName = "Kitware.VTK.vtkMergeTables"
 Automatically generated type registration mechanics.

Static Public Attributes

static new readonly string MRClassNameKey = "14vtkMergeTables"
 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 vtkMergeTables_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkMergeTables_GetFirstTablePrefix_01 (HandleRef pThis)
static internal byte vtkMergeTables_GetMergeColumnsByName_02 (HandleRef pThis)
static internal byte vtkMergeTables_GetPrefixAllButMerged_03 (HandleRef pThis)
static internal IntPtr vtkMergeTables_GetSecondTablePrefix_04 (HandleRef pThis)
static internal int vtkMergeTables_IsA_05 (HandleRef pThis, string type)
static internal int vtkMergeTables_IsTypeOf_06 (string type)
static internal void vtkMergeTables_MergeColumnsByNameOff_07 (HandleRef pThis)
static internal void vtkMergeTables_MergeColumnsByNameOn_08 (HandleRef pThis)
static internal IntPtr vtkMergeTables_NewInstance_10 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkMergeTables_PrefixAllButMergedOff_11 (HandleRef pThis)
static internal void vtkMergeTables_PrefixAllButMergedOn_12 (HandleRef pThis)
static internal IntPtr vtkMergeTables_SafeDownCast_13 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkMergeTables_SetFirstTablePrefix_14 (HandleRef pThis, string _arg)
static internal void vtkMergeTables_SetMergeColumnsByName_15 (HandleRef pThis, byte _arg)
static internal void vtkMergeTables_SetPrefixAllButMerged_16 (HandleRef pThis, byte _arg)
static internal void vtkMergeTables_SetSecondTablePrefix_17 (HandleRef pThis, string _arg)

Static Private Member Functions

static vtkMergeTables ()
 Automatically generated type registration mechanics.

Detailed Description

vtkMergeTables - combine two tables

Description Combines the columns of two tables into one larger table. The number of rows in the resulting table is the sum of the number of rows in each of the input tables. The number of columns in the output is generally the sum of the number of columns in each input table, except in the case where column names are duplicated in both tables. In this case, if MergeColumnsByName is on (the default), the two columns will be merged into a single column of the same name. If MergeColumnsByName is off, both columns will exist in the output. You may set the FirstTablePrefix and SecondTablePrefix to define how the columns named are modified. One of these prefixes may be the empty string, but they must be different.


Constructor & Destructor Documentation

static Kitware.VTK.vtkMergeTables.vtkMergeTables ( ) [static, private]

Automatically generated type registration mechanics.

Kitware.VTK.vtkMergeTables.vtkMergeTables ( IntPtr  rawCppThis,
bool  callDisposalMethod,
bool  strong 
)

Automatically generated constructor - called from generated code. DO NOT call directly.

Undocumented Block.


Member Function Documentation

override void Kitware.VTK.vtkMergeTables.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.vtkTableAlgorithm.

virtual string Kitware.VTK.vtkMergeTables.GetFirstTablePrefix ( ) [virtual]

The prefix to give to same-named fields from the first table. Default is "Table1.".

If on, merges columns with the same name. If off, keeps both columns, but calls one FirstTablePrefix + name, and the other SecondTablePrefix + name. Default is on.

If on, all columns will have prefixes except merged columns. If off, only unmerged columns with the same name will have prefixes. Default is off.

The prefix to give to same-named fields from the second table. Default is "Table2.".

override int Kitware.VTK.vtkMergeTables.IsA ( string  type) [virtual]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkTableAlgorithm.

static new int Kitware.VTK.vtkMergeTables.IsTypeOf ( string  type) [static]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkTableAlgorithm.

If on, merges columns with the same name. If off, keeps both columns, but calls one FirstTablePrefix + name, and the other SecondTablePrefix + name. Default is on.

If on, merges columns with the same name. If off, keeps both columns, but calls one FirstTablePrefix + name, and the other SecondTablePrefix + name. Default is on.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkTableAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkTableAlgorithm.

If on, all columns will have prefixes except merged columns. If off, only unmerged columns with the same name will have prefixes. Default is off.

If on, all columns will have prefixes except merged columns. If off, only unmerged columns with the same name will have prefixes. Default is off.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkTableAlgorithm.

Here is the call graph for this function:

virtual void Kitware.VTK.vtkMergeTables.SetFirstTablePrefix ( string  _arg) [virtual]

The prefix to give to same-named fields from the first table. Default is "Table1.".

virtual void Kitware.VTK.vtkMergeTables.SetMergeColumnsByName ( bool  _arg) [virtual]

If on, merges columns with the same name. If off, keeps both columns, but calls one FirstTablePrefix + name, and the other SecondTablePrefix + name. Default is on.

virtual void Kitware.VTK.vtkMergeTables.SetPrefixAllButMerged ( bool  _arg) [virtual]

If on, all columns will have prefixes except merged columns. If off, only unmerged columns with the same name will have prefixes. Default is off.

virtual void Kitware.VTK.vtkMergeTables.SetSecondTablePrefix ( string  _arg) [virtual]

The prefix to give to same-named fields from the second table. Default is "Table2.".

static internal IntPtr Kitware.VTK.vtkMergeTables.vtkMergeTables_GetFirstTablePrefix_01 ( HandleRef  pThis) [private]
static internal byte Kitware.VTK.vtkMergeTables.vtkMergeTables_GetMergeColumnsByName_02 ( HandleRef  pThis) [private]
static internal byte Kitware.VTK.vtkMergeTables.vtkMergeTables_GetPrefixAllButMerged_03 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkMergeTables.vtkMergeTables_GetSecondTablePrefix_04 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkMergeTables.vtkMergeTables_IsA_05 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkMergeTables.vtkMergeTables_IsTypeOf_06 ( string  type) [private]
static internal void Kitware.VTK.vtkMergeTables.vtkMergeTables_MergeColumnsByNameOff_07 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkMergeTables.vtkMergeTables_MergeColumnsByNameOn_08 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkMergeTables.vtkMergeTables_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkMergeTables.vtkMergeTables_NewInstance_10 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkMergeTables.vtkMergeTables_PrefixAllButMergedOff_11 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkMergeTables.vtkMergeTables_PrefixAllButMergedOn_12 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkMergeTables.vtkMergeTables_SafeDownCast_13 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkMergeTables.vtkMergeTables_SetFirstTablePrefix_14 ( HandleRef  pThis,
string  _arg 
) [private]
static internal void Kitware.VTK.vtkMergeTables.vtkMergeTables_SetMergeColumnsByName_15 ( HandleRef  pThis,
byte  _arg 
) [private]
static internal void Kitware.VTK.vtkMergeTables.vtkMergeTables_SetPrefixAllButMerged_16 ( HandleRef  pThis,
byte  _arg 
) [private]
static internal void Kitware.VTK.vtkMergeTables.vtkMergeTables_SetSecondTablePrefix_17 ( HandleRef  pThis,
string  _arg 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkMergeTables.MRClassNameKey = "14vtkMergeTables" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkTableAlgorithm.

new const string Kitware.VTK.vtkMergeTables.MRFullTypeName = "Kitware.VTK.vtkMergeTables"

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkTableAlgorithm.


The documentation for this class was generated from the following file: