Class SheetSetting
Excel Sheet Settings
public sealed class SheetSetting
- Inheritance
-
SheetSetting
- Inherited Members
Properties
AutoColumnWidthEnabled
Gets or set whether to enable auto column width, disabled by default.
public bool AutoColumnWidthEnabled { get; set; }
Property Value
CellAction
Cell Action on export
public Action<ICell>? CellAction { get; set; }
Property Value
CellFilter
Cell Filter
public Func<ICell, bool>? CellFilter { get; set; }
Property Value
EndRowIndex
EndRowIndex, included
public int? EndRowIndex { get; set; }
Property Value
- int?
HeaderRowIndex
HeaderRowIndex
public int HeaderRowIndex { get; }
Property Value
RowAction
Row Action on export
public Action<IRow>? RowAction { get; set; }
Property Value
RowFilter
Row Filter
public Func<IRow, bool>? RowFilter { get; set; }
Property Value
SheetAction
Sheet Action on export
public Action<ISheet>? SheetAction { get; set; }
Property Value
SheetName
SheetName
public string SheetName { get; set; }
Property Value
SkipHeaderRow
Gets or sets whether to skip column index adjustment based on header row during import. When false (default), column indices are automatically adjusted based on header row. When true, column indices are used as-is.
public bool SkipHeaderRow { get; set; }
Property Value
StartRowIndex
StartRowIndex
public int StartRowIndex { get; set; }