[]
Represents options for opening an XLTX template file.
This class inherits the available XLSX open-option settings from XlsxOpenOptions, such as password, import flags, recalculation behavior, auto-fit behavior, and digital signature behavior, and uses Xltx as the target format.
public class XltxOpenOptions : XlsxOpenOptions
Public Class XltxOpenOptions
Inherits XlsxOpenOptions
XltxOpenOptions options = new XltxOpenOptions();
string password = GetWorkbookPassword();
options.Password = password;
workbook.Open("path/to/template.xltx", options);
| Name | Description |
|---|---|
| XltxOpenOptions() | Constructor. |