Reads the .csv file at the specified row and column using the delimiter, if the .csv file is properly formatted.
Namespace:
AppRobotic
Assembly:
AppRobotic (in AppRobotic.dll) Version: 15.21.3.21 (15.21.03.21)
Syntax public string CSVRead(
Object PathToCSVFile,
Object Delimiter,
Object RowNumber,
Object ColumnNumber
)
Parameters
- PathToCSVFile
- Type: SystemObject
File path to the .csv file. - Delimiter
- Type: SystemObject
Specify the delimiter, i.e. "," or ";" or "\t" or "|" or " ". - RowNumber
- Type: SystemObject
Row number of the value to be read. - ColumnNumber
- Type: SystemObject
Column number of the value to be read.
Return Value
Type:
StringReturns string containing the value of the specified cell, or error message.
See Also