Click or drag to resize
NanoXLSX

ImportOptions Class

The import options define global rules to import worksheets. The options are mainly to override particular cell types (e.g. interpretation of dates as numbers)
Inheritance Hierarchy
SystemObject
  NanoXLSXImportOptions

Namespace: NanoXLSX
Assembly: NanoXLSX (in NanoXLSX.dll) Version: 2.6.2+7f12a949130e0be1e987e553d2d08c083176cdca
Syntax
C#
public class ImportOptions

The ImportOptions type exposes the following members.

Constructors
 NameDescription
Private methodStatic memberImportOptions 
Public methodImportOptionsInitializes a new instance of the ImportOptions class
Top
Properties
 NameDescription
Public propertyDateTimeFormat Format if DateTime values are cast to strings or DateTime objects are parsed from strings. If null or empty, parsing will be tried with 'best effort', according to . See also TemporalCultureInfo
Public propertyEnforceDateTimesAsNumbers If true, date or time values (default format number 14 or 21) will be interpreted as numeric values globally. This option overrules possible column options, defined by AddEnforcedColumn(Int32, ImportOptionsColumnType).
Public propertyEnforcedColumnTypes Type enforcing rules during import for particular columns
Public propertyEnforceEmptyValuesAsString If true, empty cells will be interpreted as type of string with an empty value. If false, the type will be Empty and the value null
Public propertyEnforcePhoneticCharacterImport If true, phonetic characters (like ruby characters / Furigana / Zhuyin fuhao) in strings are added in brackets after the transcribed symbols. By default, phonetic characters are removed from strings.
Public propertyEnforcingStartRowNumber The row number (zero-based) where enforcing rules are started to be applied. This is, for instance, to prevent enforcing types in a header row. Any enforcing rule is skipped until this row number is reached
Public propertyGlobalEnforcingType Global strategy to handle cell values. The default will not enforce any general casting, beside defined values of , and
Public propertyTemporalCultureInfo Culture info instance, used to parse DateTime or TimeSpan objects from strings. If null, parsing will be tried with 'best effort', according to . See also DateTimeFormat and TimeSpanFormat
Public propertyTimeSpanFormat Format if TimeSpan values are cast to strings
Top
Methods
 NameDescription
Public methodAddEnforcedColumn(Int32, ImportOptionsColumnType) Adds a type enforcing rule to the passed column number (zero-based)
Public methodAddEnforcedColumn(String, ImportOptionsColumnType) Adds a type enforcing rule to the passed column address
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Fields
 NameDescription
Public fieldStatic memberDEFAULT_CULTURE_INFO Default culture info instance (invariant culture) used for date and time parsing, if no custom culture info is defined
Public fieldStatic memberDEFAULT_DATETIME_FORMAT Default format if DateTime values are cast to strings
Public fieldStatic memberDEFAULT_TIMESPAN_FORMAT Default format if TimeSpan values are cast to strings
Top
See Also