Skip to main content
Row

ISpreadsheetComponent.LoadDocument(Stream, DocumentFormat) Method

Loads a document from a stream, specifying the document format.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

bool LoadDocument(
    Stream stream,
    DocumentFormat format
)

Parameters

Name Type Description
stream Stream

The stream from which to load a document.

format DocumentFormat

One of the DocumentFormat members.

Returns

Type Description
Boolean

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

Remarks

The LoadDocument method can use a non-seekable stream to load a document. In this case, the stream buffers automatically.

Note

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

See Also