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

RichEditExtension.SaveCopy(String, String) Method

Saves a document copy using the specified settings.

Namespace: DevExpress.Web.Mvc

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

Declaration

public static void SaveCopy(
    string extensionName,
    string documentPath
)

Parameters

Name Type Description
extensionName String

A string value that specifies the RichEdit name.

documentPath String

A string value specifying the document path to save to.

Remarks

Use the SaveCopy method to save a copy of the specified RichEdit’s document to the specified path. 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