Table CLASS

Name PROPERTY (string)
Gets table name SYNTAX public string Name { get; }
Sat, May 5, 2018 at 7:42 PM
RowsCount PROPERTY (int)
Gets rows count of the table SYNTAX public int RowsCount { get; }
Sat, May 5, 2018 at 7:43 PM
GetAllTables () METHOD (Return: Table[])
Returns all exist tables SYNTAX public static Table[] GetAllTables () RETURN Table[] array with existed tables
Sat, May 5, 2018 at 7:44 PM
GetRow (int rowIndex) METHOD (Return: Row)
Returns Row object from the table. SYNTAX public Row GetRow (int rowIndex) PARAMETERS rowIndex — int zero-based index of the row RETURN ...
Sat, May 5, 2018 at 7:45 PM
GetTablesByName (string name) METHOD (Return: Table[])
Returns all exist tables by name SYNTAX public static Table[] GetTablesByName (string name) PARAMETERS name — string name of the panel RE...
Sat, May 5, 2018 at 7:47 PM
GetTablesByType (PanelType type) METHOD (Return: Table[])
Returns all exist tables by type. SYNTAX public static Table[] GetTablesByType (PanelType type) PARAMETERS type — PanelType type of the panel...
Sat, May 5, 2018 at 7:56 PM