[]
Option class for saving xlsx file.
public class XlsxSaveOptions : SaveOptionsBase
Constructor.
public XlsxSaveOptions()
Indicates whether to exclude any empty cells(cells with no data or only style) outside the used data range. Default is false.
public bool ExcludeEmptyRegionCells { get; set; }
Indicates whether to exclude user-defined but never used Define name. Default is false.
public bool ExcludeUnusedNames { get; set; }
Indicates whether to exclude user-defined but never used Cell styles. Default is false.
public bool ExcludeUnusedStyles { get; set; }
Indicates whether to treat formula cells as value cells.
public bool IgnoreFormulas { get; set; }
A bool indicating whether to save workbook in compact mode, the default value is false.
public bool IsCompactMode { get; set; }
The password for the xlsx file.
public string Password { get; set; }