[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.XlsmOpenOptions

XlsmOpenOptions Class

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.

Inheritance
XlsmOpenOptions
Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public class XlsmOpenOptions : XlsxOpenOptions
Public Class XlsmOpenOptions
    Inherits XlsxOpenOptions
Examples
XlsmOpenOptions options = new XlsmOpenOptions();
string password = GetWorkbookPassword();
options.Password = password;
workbook.Open("path/to/workbook.xlsm", options);

Constructors

Name Description
XlsmOpenOptions()

Constructor.