Skip to main content
A newer version of this page is available. .

RichEditExtension.SaveCopy(String, DocumentFormat) Method

Saves a document copy using the specified settings.

Namespace: DevExpress.Web.Mvc

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

Declaration

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

Parameters

Name Type Description
extensionName String

A string value that specifies the RichEdit name.

format DocumentFormat

A DocumentFormat object specifying the document format.

Returns

Type Description
Byte[]

An array of bytes where the document is saved to.

Remarks

Use the SaveCopy method to save a copy of the specified RichEdit’s document to a byte array, specifying the document’s format. This method just exports the document and does 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