Skip to main content
All docs
V26.1
  • SpreadsheetControl.SaveDocument(String, EncryptionSettings) Method

    SECURITY-RELATED CONSIDERATIONS

    Using file paths sourced from untrusted input may expose unauthorized files or allow unintended file access. Always validate and normalize all external paths to prevent path manipulation.

    Saves the document to a file with the specified encryption settings.

    Namespace: DevExpress.XtraSpreadsheet

    Assembly: DevExpress.XtraSpreadsheet.v26.1.dll

    NuGet Package: DevExpress.Win.Spreadsheet

    Declaration

    public void SaveDocument(
        string fileName,
        EncryptionSettings encryptionSettings
    )

    Parameters

    Name Type Description
    fileName String

    The path to a file in which to save the document.

    encryptionSettings EncryptionSettings

    Document encryption settings.

    Remarks

    Use the SpreadsheetControl.Options.Export property to access global export options, or handle the SpreadsheetControl.BeforeExport event to specify options for an individual export action.

    Use this SaveDocument method overload to encrypt a document with a password on save.

    See Also