Skip to main content

ASPxSpreadsheet.SaveCopy(String) Method

Saves a copy of the active document to a file system.

Namespace: DevExpress.Web.ASPxSpreadsheet

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

NuGet Package: DevExpress.Web.Office

Declaration

public void SaveCopy(
    string documentPath
)

Parameters

Name Type Description
documentPath String

The document path to save the copy.

Remarks

Use the SaveCopy method to save a copy of the active document to a file system. 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.).

ASPxSpreadsheet1.SaveCopy(documentPath);
See Also