Table CLASS
Gets table name SYNTAX public string Name { get; }
Sat, May 5, 2018 at 7:42 PM
Gets rows count of the table SYNTAX public int RowsCount { get; }
Sat, May 5, 2018 at 7:43 PM
Returns all exist tables SYNTAX public static Table[] GetAllTables () RETURN Table[] array with existed tables
Sat, May 5, 2018 at 7:44 PM
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
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
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