[]
Represents options for loading data from an Excel file.
public class LoadExcelOptions
Public Class LoadExcelOptions
These options allow for customization of the import process, such as including only visible rows and columns.
| Name | Description |
|---|---|
| LoadExcelOptions() |
| Name | Description |
|---|---|
| ColumnMaxWidth | Gets or sets the maximum allowable width for the columns. |
| ColumnMinWidth | Gets or sets the minimum allowable width for the columns. |
| FreezeRowsAndColumns | Specifies whether to freeze rows and columns in the grid after importing.
The default value is |
| OnLoadedCallback | Gets or sets a callback that is invoked after the Excel data has been parsed. |
| OverriddenColumnDefaultWidth | Gets or sets the width that overrides the default Excel column width. |
| OverriddenRowDefaultHeight | Gets or sets the height that overrides the default Excel row height. |
| RowMaxHeight | Gets or sets the maximum allowable height for the rows. |
| RowMinHeight | Gets or sets the minimum allowable height for the rows. |
| SheetCellRange | Represents the range of cells to be processed and loaded into the grid. |
| SheetColumnHeaderRowIndex | Specifies the Excel sheet's row index for the column headers.
The default value is |
| SheetRowHeaderColumnIndex | Specifies the Excel sheet's column index for the row headers.
The default value is |
| Transpose | Specifies whether the content should be transposed during the import operation.
The default value is |
| UseDefaultRowColumnSizes | Set to |
| VisibleOnly | Specifies whether only visible rows and columns should be loaded. |