[]
Represents options for opening an XLSM workbook.
This class inherits the XLSX open-option settings provided by XlsxOpenOptions, such as password, import flags, recalculation behavior, row auto-fit behavior, and digital-signature-only mode, and uses Xlsm as the target format.
public class XlsmOpenOptions : XlsxOpenOptions
Public Class XlsmOpenOptions
Inherits XlsxOpenOptions
XlsmOpenOptions options = new XlsmOpenOptions();
string password = GetWorkbookPassword();
options.Password = password;
workbook.Open("path/to/workbook.xlsm", options);
| Name | Description |
|---|---|
| XlsmOpenOptions() | Constructor. |