Optional
date1904If true
, dates parsed as numbers will follow the 1904 date system.
When not specified, the setting is inherited from the containing cell's configuration.
Optional
dateWhen true
, strings in the format m/d/yy
will be automatically parsed as dates.
This option is usually bypassed in favor of using localization for date formatting.
Optional
ignoreIf true
, the leading quote character in the string will be ignored during parsing.
This option is typically useful when importing data from CSV files.
Optional
parseProvides a custom callback for parsing strings during updates. This is particularly useful for handling complex data transformations in CSV imports or other data bindings.
context
parameter supplies cell-specific information and utility methods.ICell.Update
object, or undefined
to use the default parsed value.The input string to parse.
The context providing access to cell-specific information for parsing.
The parsed ICell.Update
object, or undefined
to use the default value.
Configuration options for customizing the parsing of a string into an
ICell.Update
object. Commonly used for processing CSV imports and other string-based data sources.