Test whether a value exists at a given row.
Source position: csvdocument.pp line 126
| public function TCSVDocument.IndexOfCol( | 
| const AString: string; | 
| ARow: Integer | 
| ):Integer; | 
| AString | 
 | String to search for. | 
| ARow | 
 | Row to search in. | 
Index of the first cell with value aString at row aRow.
IndexOfCol returns the index of the first cell with given value aString in row aRow. It returns -1 if row aRow does not exist, or if the value does not appear in the given row.
| 
 | Array access to all cells. | |
| 
 | Test whether a value exists at a given column. |