Section: Visualization Toolkit Infovis Classes
To create an instance of class vtkMergeTables, simply invoke its constructor as follows
obj = vtkMergeTables
obj
is an instance of the vtkMergeTables class.
string = obj.GetClassName ()
int = obj.IsA (string name)
vtkMergeTables = obj.NewInstance ()
vtkMergeTables = obj.SafeDownCast (vtkObject o)
obj.SetFirstTablePrefix (string )
- The prefix to give to same-named fields from the first table.
Default is "Table1.".
string = obj.GetFirstTablePrefix ()
- The prefix to give to same-named fields from the first table.
Default is "Table1.".
obj.SetSecondTablePrefix (string )
- The prefix to give to same-named fields from the second table.
Default is "Table2.".
string = obj.GetSecondTablePrefix ()
- The prefix to give to same-named fields from the second table.
Default is "Table2.".
obj.SetMergeColumnsByName (bool )
- 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.
bool = obj.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.
obj.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.
obj.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.
obj.SetPrefixAllButMerged (bool )
- 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.
bool = obj.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.
obj.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.
obj.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.