Skip to main content
Row

ISpreadsheetComponent.LoadDocument(Byte[]) Method

Loads the 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
)

Parameters

Name Type Description
buffer Byte[]

A System.Byte[] object that is an array of bytes containing document data.

Returns

Type Description
Boolean

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

Remarks

The format of the document loaded using this LoadDocument method overload is detected automatically by the built-in IFormatDetectorService implementation.

If the format detection fails, an ISpreadsheetComponent.InvalidFormatException is raised.

See Also