[]
The options for importing data to a range.
public class DataImportOptions
public DataImportOptions()
Selects columns to import. The default behavior is to auto-generate all columns.
public Func<object, IEnumerable> ColumnsSelector { get; set; }
The delegate accepts the collection or DataTable to select columns.
The delegate returns different types of values to describe selected columns:
T
is the element type of collection,
TResult
is the property type) to select columns
with custom column getters.T1
is column name string,
T2
is property getter Delegate;
The delegate type of each element is Func<T, TResult>,
T
is the element type of collection,
TResult
is the property type) to select columns
with custom column names and custom column getters. The default behavior is not AOT-compatible for custom objects.
Determines whether to include column header as the first row when importing data.
public bool IncludeColumnsHeader { get; set; }
Determines how to handle insufficient space when importing data.
public InsufficientSpaceHandling InsufficientSpaceHandling { get; set; }
The default value is Overwrite.
Gets item type from the specified IEnumerable. The type is used to generate columns. The default behavior is to try to get the item type from the generic parameter of IEnumerable<T>, then try to get type from the first item of the IEnumerable.
public Func<IEnumerable, Type> ItemTypeProvider { get; set; }
The delegate accepts the IEnumerable for getting element type.
The delegate returns the item type of the IEnumerable.