[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SaveOptions.IsCompactMode

IsCompactMode Property

IsCompactMode

Gets or sets whether to save the workbook in compact mode.

When this property is true, the generated workbook content is written in a more compact form. The default value is false.

Declaration
public bool IsCompactMode { get; set; }
Public Property IsCompactMode As Boolean
Examples
SaveOptions options = new SaveOptions();
options.IsCompactMode = true;
bool compactMode = options.IsCompactMode;
workbook.Save("path/to/output.xlsx", options);