Skip to main content
A newer version of this page is available. .

SpreadsheetControl.LoadDocument(Stream) Method

Loads the document from a stream.

Namespace: DevExpress.XtraSpreadsheet

Assembly: DevExpress.XtraSpreadsheet.v18.2.dll

Declaration

public bool LoadDocument(
    Stream stream
)

Parameters

Name Type Description
stream Stream

A Stream object that is the stream used to load a document.

Returns

Type Description
Boolean

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

Remarks

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

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

  • XLSX, XLSM, XLTX, XLTM (non encrypted files only);
  • XLS, XLT;
  • CSV, TXT (only if loaded from a FileStream instance).

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

See Also