Tables Type
Ordered, named collection of Table objects backed by a Dataset. Groups processes by name: each unique process name in the dataset becomes one Table.
Constructors
| Constructor |
Description
|
|
Instance members
| Instance member |
Description
|
Full Usage:
this.AddColumn
Parameters:
string
header : CompositeHeader
?cells : ResizeArray<CompositeCell>
|
Add a column to the named table.
|
Full Usage:
this.AddRow
Parameters:
string
?cells : ResizeArray<CompositeCell>
?rowIndex : int
|
Add a row to the named table.
|
|
Add a new empty table (creates no processes until rows are added). Fails if a table with that name already exists.
|
|
|
|
|
|
Build the live list of Table objects by grouping dataset processes by name.
|
|
Remove a column from the named table.
|
Full Usage:
this.RemoveRow
Parameters:
string
rowIndex : int
|
Remove a row from the named table.
|
Full Usage:
this.RemoveTable
Parameters:
string
|
Remove all processes belonging to the named table from the dataset.
|
Full Usage:
this.RenameTable
Parameters:
string
newName : string
|
Rename all processes belonging to `oldName` to `newName`.
|
Full Usage:
this.TableCount
Returns: int
|
Number of tables (= number of distinct process names).
|
Full Usage:
this.TableNames
Returns: ResizeArray<string>
|
Names of all tables in order.
|
|
ProcessCore