TExportWorkSheets is the list where Worksheets are stored.
Name | Type | Description |
---|---|---|
Items[Index: Integer] | TExportWorkSheet | Default list property. |
Add a new row to the second worksheet in the document:
var xExport: TOExport; begin [...] xExport.WorkSheets[1].AddRow; [...] end;