[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.XltxSaveOptions

XltxSaveOptions Class

Represents options for saving a workbook as an XLTX template file.

This class inherits the XLSX-related save settings provided by XlsxSaveOptions and uses Xltx as the target format when workbook content is saved as an Excel template.

Inheritance
XltxSaveOptions
Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public class XltxSaveOptions : XlsxSaveOptions
Public Class XltxSaveOptions
    Inherits XlsxSaveOptions
Examples
XltxSaveOptions options = new XltxSaveOptions();
options.ExcludeUnusedStyles = true;
options.IgnoreFormulas = true;
workbook.Save("path/to/output.xltx", options);

Constructors

Name Description
XltxSaveOptions()

Constructor.