Add a new cell to a row.
Source position: csvdocument.pp line 108
public procedure TCSVDocument.AddCell( |
ARow: Integer; |
const AValue: string = '' |
); |
ARow |
|
Row (zero-based) to add cell to. |
AValue |
|
Value for newly added cell. |
AddCell adds a new cell at the end of row aRow (zero based) with value aValue. If aValue is not specified, then an empty cell is added.
If a non-existing row is specified, rows are added till aRow is reached.
|
Add a new row to the CSV Data. |
|
|
Insert row before row number aRow. |
|
|
Insert cell at specified position. |
|
|
Remove a cell at a particular row. |