Skip to main content

ASPxRichEdit.Open(Guid) Method

Opens a document specified by the work session identifier.

Namespace: DevExpress.Web.ASPxRichEdit

Assembly: DevExpress.Web.ASPxRichEdit.v24.1.dll

NuGet Package: DevExpress.Web.Office

Declaration

public void Open(
    Guid workSessionGuid
)

Parameters

Name Type Description
workSessionGuid Guid

A Guid object identifying the document to open.

Remarks

ASPxRichEdit1.Open(Guid.NewGuid().ToString(), DocumentFormat.Rtf, () => {
    return memoryStream.ToArray();
});
See Also