TxtLoadOptionsPreferredParsers Property |
Gets and sets preferred value parsers for loading text file.
Namespace:
Aspose.Cells
Assembly:
Aspose.Cells (in Aspose.Cells.dll) Version: 22.5.0.0 (22.5.0)
Syntaxpublic ICustomParser[] PreferredParsers { get; set; }
Public Property PreferredParsers As ICustomParser()
Get
Set
public:
property array<ICustomParser^>^ PreferredParsers {
array<ICustomParser^>^ get ();
void set (array<ICustomParser^>^ value);
}
member PreferredParsers : ICustomParser[] with get, set
Property Value
Type:
ICustomParser
Remarks
parsers[0] is the parser will be used for the first column in text template file,
parsers[1] is the parser will be used for the second column, ...etc.
The last one(parsers[parsers.length-1]) will be used for all other columns start from parsers.length-1.
If one item is null, the corresponding column will be parsed by the default parser of Aspose.Cells.
See Also