Skip to main content

RichEditExtension.SaveCopy(String, DocumentFormat) Method

Saves a document copy using the specified settings.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public static byte[] SaveCopy(
    string extensionName,
    DocumentFormat format
)

Parameters

Name Type Description
extensionName String

The RichEdit name.

format DocumentFormat

The document format.

Returns

Type Description
Byte[]

An array of bytes where to save the document.

Remarks

Use the SaveCopy method to save a copy of the active document to a byte array in the specified format. This method exports the document with the current changes, but do not affect the original document state (it does not initiate document synchronization, does not apply client changes to the document model, etc.).

The correct RichEdit’s state is available on a controller only if the form containing RichEdit is submitted or a request to the server is sent using the RichEdit’s callback.

See Also