Skip to main content
Row

ISpreadsheetComponent.LoadDocument(Byte[], DocumentFormat) Method

Loads a document from a byte array.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v23.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

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

Note

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

See Also