Test if a cell exists.
Source position: csvdocument.pp line 121
| public function TCSVDocument.HasCell( | 
| ACol: Integer; | 
| ARow: Integer | 
| ):Boolean; | 
| ACol | 
 | Column to test in row aRow. | 
| ARow | 
 | Row to text. | 
True if the cell at aCol,aRow exists.
HasCell returns True if aRow is a valid row index, (i.e. is larger than or equal to 0 (zero) and is strictly less than RowCount) and aCol is a valid column index for that row, i.e. is larger than or equal to 0 (zero) and is strictly less than ColCount[aRow]) .
| 
 | Number of available rows. | |
| 
 | Test if a row exists. | |
| 
 | Return the column count for a given row. |