[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SjsSaveOptions.IncludeUnusedNames

IncludeUnusedNames Property

IncludeUnusedNames

Gets or sets whether unused custom names are included when saving the file.

This property applies when exporting to the SpreadJS .sjs format. The default value is true.

Declaration
public bool IncludeUnusedNames { get; set; }
Public Property IncludeUnusedNames As Boolean
Examples
SjsSaveOptions options = new SjsSaveOptions();
options.IncludeUnusedNames = false;

bool includeUnusedNames = options.IncludeUnusedNames;
workbook.Save("path/to/output.sjs", options);