Table is visual component used to format output to the grid, add borders, back color (brush) etc.
Table content is stored in TableCells.
You can access cells by its indexes: MyTablerow_indexcol_index
Note, that indexes are zero-based!
Defined cell values:
T00.Value = "Header one"; - text "Header one" will be placed to the 1st row and 1st column
T20.Value = "MyCellValue"; - text "MyCellValue" will be placed to the 3rd row and 1st column
T23.Value = 10; - value "10" will be placed to the 3rd row and 4th column
Table, TableRow, TableColumn and TableCell has various properties, which are used to customize table appearance.
Use intellisense to browse through Table objects properties.
See attached examples for more info.
