SpreadsheetControl.SaveDocument(String, DocumentFormat, EncryptionSettings) Method
In This Article
Saves the control’s document to a file, specifying the document format and encryption settings.
Namespace: DevExpress.XtraSpreadsheet
Assembly: DevExpress.XtraSpreadsheet.v24.2.dll
NuGet Package: DevExpress.Win.Spreadsheet
#Declaration
public void SaveDocument(
string fileName,
DocumentFormat format,
EncryptionSettings encryptionSettings
)
#Parameters
Name | Type | Description |
---|---|---|
file |
String | The path to a file in which to save the document. |
format | Document |
The format of exported document. |
encryption |
Encryption |
Document encryption settings. |
#Remarks
Use this SaveDocument method overload to encrypt a document with a password on save.
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.
See Also