Package com.grapecity.documents.excel
Interface ICsvParser
public interface ICsvParser
Represents the customized parser.
-
Method Summary
Modifier and TypeMethodDescriptionvoidParse(CsvParseResult csvParseResult, CsvParseContext context) Parse text to an object, you could get the parsed result by built-in parser or overwrite it.
-
Method Details
-
Parse
Parse text to an object, you could get the parsed result by built-in parser or overwrite it.- Parameters:
csvParseResult- The parsed result. If return null, will use the builtin parser to parse the text.context- The parsed context of the current cell.
-