Skip to main content
A newer version of this page is available. .
All docs
V20.2
.NET Framework 4.5.2+

RichEditDocumentServerExtensions.LoadDocumentAsync(RichEditDocumentServer, String, DocumentFormat) Method

Asynchronously loads a document from a file in the specified format.

Namespace: DevExpress.XtraRichEdit

Assembly: DevExpress.Docs.v20.2.dll

Declaration

public static Task<bool> LoadDocumentAsync(
    this RichEditDocumentServer self,
    string fileName,
    DocumentFormat documentFormat
)

Parameters

Name Type Description
self RichEditDocumentServer

Current RichEditDocumentServer instance.

fileName String

A string that specifies the file to load (including the full path).

documentFormat DocumentFormat

The DocumentFormat enumeration member that indicates the document format.

Returns

Type Description
Task<Boolean>

A Task<TResult> object that returns true if the document is successfully loaded; otherwise, false.

Remarks

Important

The RichEditDocumentServerExtensions class is defined in the DevExpress.Docs.v20.2.dll assembly. Add this assembly to your project to use the RichEditDocumentServerExtensions members. You need a license for the DevExpress Office File API Subscription or DevExpress Universal Subscription to use this library in production code.

If the format detection fails or the passed string value is null, the RichEditDocumentServer.InvalidFormatException event fires.

After loading a document, the DocumentSaveOptions.CurrentFileName property is set to the file name and the DocumentSaveOptions.CurrentFormat property is set to the detected format.

Use the RichEditDocumentServer.DocumentLoaded event to determine the moment when the document model can be safely modified. Handle the DocumentLayout.DocumentFormatted event to check the loaded document layout.

Important

Take into account the following when you call this method:

  • The events fired by this method’s call may occur in a different thread than the target operation.

  • The operation is not thread safe (documents should not be accessed simultaneously by different threads). Wait until the operation is completed before working with the document, i.e., use the await operator.

The code sample below asynchronously loads a documents and exports it to the PDF format:

private async void Convert2Pdf()
{
    using (RichEditDocumentServer wordProcessor = new RichEditDocumentServer())
    {
        try
        {
            await wordProcessor.LoadDocumentAsync("Document.docx", DocumentFormat.OpenXml);
            await wordProcessor.ExportToPdfAsync("result.pdf");
        }
        catch (OperationCanceledException)
        {
            // Your code to handle cancellation
        }
    }
}
See Also