[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.XlsmSaveOptions

XlsmSaveOptions Class

Represents options for saving a workbook as an XLSM file.

This class inherits the XLSX-related save settings provided by XlsxSaveOptions, such as password protection, formula handling, shared formula export, and excluding unused content, and uses Xlsm as the target format.

Inheritance
XlsmSaveOptions
Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public class XlsmSaveOptions : XlsxSaveOptions
Public Class XlsmSaveOptions
    Inherits XlsxSaveOptions
Examples
string password = GetWorkbookPassword();
XlsmSaveOptions options = new XlsmSaveOptions();
options.Password = password;
options.IgnoreFormulas = true;
workbook.Save("path/to/output.xlsm", options);

Constructors

Name Description
XlsmSaveOptions()

Constructor.