Skip to main content
All docs
V25.1
  • JS

    RichEditBuilder.Open(Func<Stream>, DocumentFormat, String) Method

    Opens a document specified by a stream.

    Namespace: DevExpress.AspNetCore.RichEdit

    Assembly: DevExpress.AspNetCore.RichEdit.v25.1.dll

    NuGet Package: DevExpress.AspNetCore.RichEdit

    Declaration

    public RichEditBuilder Open(
        Func<Stream> contentAccessorByStream,
        DocumentFormat format,
        string documentName = null
    )

    Parameters

    Name Type Description
    contentAccessorByStream Func<Stream>

    A method delegate that gets a stream from which to open the document.

    format DocumentFormat

    An object that specifies the document format.

    Optional Parameters

    Name Type Default Description
    documentName String null

    The name of the file to open. Also serves as an exported file name.

    Returns

    Type Description
    RichEditBuilder

    A RichEditBuilder that allows you to configure the Rich Text Editor.

    See Also