TrganTable
TrganTable enables you to define a structured, column-based table within a Trgan Report. It’s designed to capture execution outcomes for targeted use cases, making it easier to organize result data. Instantiating the TrganTable,
1 2 |
|
Add Columns
Columns can be added to the Trgan Table by calling AddColumn function, which takes a string parameter as column name. Any number of columns can be created but it should not exceeds the count of columns defined during trgan table initialization and unfilled column slots are ignored.
1 2 3 4 |
|
Add Row Entries
Use AddEntry() to create a new row and then assign values using dynamic property syntax:
1 2 3 4 5 6 7 |
|
Note
Column names must be added before adding entries. Each row supports dynamic assignment using ValueOf. Unassigned columns will default to empty strings.