[]
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; }
Public Property ItemTypeProvider As Func(Of IEnumerable, Type)
Type | Description |
---|---|
Func<IEnumerable, Type> | The delegate accepts the IEnumerable for getting element type. |