Skip to main content

SpreadsheetControl.SaveDocument(DocumentFormat) Method

Saves a document to an array of bytes in the specified format.

Namespace: DevExpress.XtraSpreadsheet

Assembly: DevExpress.XtraSpreadsheet.v23.2.dll

NuGet Package: DevExpress.Win.Spreadsheet

Declaration

public byte[] SaveDocument(
    DocumentFormat format
)

Parameters

Name Type Description
format DocumentFormat

A DocumentFormat enumeration member specifying the format of the document to be saved.

Returns

Type Description
Byte[]

A Byte[] object that is 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