Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SpreadsheetControl.LoadDocument(Byte[], DocumentFormat) Method

Loads a document from a byte array.

Namespace: DevExpress.Xpf.Spreadsheet

Assembly: DevExpress.Xpf.Spreadsheet.v24.2.dll

NuGet Package: DevExpress.Wpf.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 format of the document to load.

#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.

Note

With the format method parameter passed as DocumentFormat.Undefined, the loaded document format is detected automatically.

See Also