[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.DataImportOptions.ItemTypeProvider

ItemTypeProvider Property

ItemTypeProvider

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.

Declaration
public Func<IEnumerable, Type> ItemTypeProvider { get; set; }
Public Property ItemTypeProvider As Func(Of IEnumerable, Type)
Property Value
Type Description
Func<IEnumerable, Type>

The delegate accepts the IEnumerable for getting element type.
The delegate returns the item type of the IEnumerable.