[]
Determines whether to include column header as the first row when importing data.
public bool IncludeColumnsHeader { get; set; }
Public Property IncludeColumnsHeader As Boolean
| Type | Description |
|---|---|
| bool | The default value is true. |
DataImportOptions options = new DataImportOptions();
options.IncludeColumnsHeader = false;
bool includeHeaders = options.IncludeColumnsHeader;