[]
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.
public class XltxSaveOptions : XlsxSaveOptions
Public Class XltxSaveOptions
Inherits XlsxSaveOptions
XltxSaveOptions options = new XltxSaveOptions();
options.ExcludeUnusedStyles = true;
options.IgnoreFormulas = true;
workbook.Save("path/to/output.xltx", options);
| Name | Description |
|---|---|
| XltxSaveOptions() | Constructor. |