Skip to main content

SpreadsheetExtension.GetCallbackResult(String, Action<SpreadsheetCustomDocumentProcessor>) Method

Returns the specified result back to the client side after.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public static ActionResult GetCallbackResult(
    string extensionName,
    Action<SpreadsheetCustomDocumentProcessor> method
)

Parameters

Name Type Description
extensionName String

The name of the processed Spreadsheet extension.

method Action<SpreadsheetCustomDocumentProcessor>

A delegate method.

Returns

Type Description
ActionResult

An object that is the result of an action method.

Remarks

This method creates the empty SpreadsheetSettings object internally. These settings do not have CallbackRouteValues specified - as the result, you can get an error during callbacks. To resolve the issue, use another overload of this method: GetCallbackResult(SpreadsheetSettings).

See Also