Skip to main content

RichEditExtension.Open(String) Method

Opens a document from a file system.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public RichEditExtension Open(
    string filePath
)

Parameters

Name Type Description
filePath String

The path to a document to open.

Returns

Type Description
RichEditExtension

The RichEdit extension.

Remarks

Call this Open method to open a document from the server’s file system. When you open a document for the first time, the control loads it to the server’s memory and generates a DocumentId from the filePath parameter value.

If the document is already open, the method activates the document stored in the server’s memory.

Specify the WorkDirectory property to enable the Open and Save As UI commands. Users cannot access the file system outside the specified directory.

See Also