SpreadsheetControl.SaveDocument(DocumentFormat, EncryptionSettings) Method
Saves a document to an array of bytes in the specified format and with specified encryption settings.
Namespace: DevExpress.XtraSpreadsheet
Assembly: DevExpress.XtraSpreadsheet.v24.1.dll
NuGet Package: DevExpress.Win.Spreadsheet
Declaration
public byte[] SaveDocument(
DocumentFormat format,
EncryptionSettings encryptionSettings
)
Parameters
Name | Type | Description |
---|---|---|
format | DocumentFormat | The format of the exported document. |
encryptionSettings | EncryptionSettings | Document encryption settings. |
Returns
Type | Description |
---|---|
Byte[] | An array of bytes containing document data in the specified format. |
Remarks
The SaveDocument method can be used to store a workbook in an external database. Refer to the How to: Store a Workbook in the Database document for additional information.
See Also