Skip to main content

SpreadsheetControl.LoadDocument(Byte[], DocumentFormat) Method

Loads a document from a byte array.

Namespace: DevExpress.XtraSpreadsheet

Assembly: DevExpress.XtraSpreadsheet.v23.2.dll

NuGet Package: DevExpress.Win.Spreadsheet

Declaration

public bool LoadDocument(
    byte[] buffer,
    DocumentFormat format
)

Parameters

Name Type Description
buffer Byte[]

A Byte[] object that is an array of bytes containing document data in the specified format.

format DocumentFormat

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

Returns

Type Description
Boolean

true if the document is successfully loaded; otherwise, false.

Remarks

The LoadDocument method can be used to load a workbook stored in an external database. Refer to the How to: Store a Workbook in the Database document for additional information.

See Also