Skip to main content

SpreadsheetExtension.GetCustomActionResult(String) Method

Returns the specified result back to the client side after processing a callback within an Action defined by the SpreadsheetSettings.CustomActionRouteValues property.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public static ActionResult GetCustomActionResult(
    string extensionName
)

Parameters

Name Type Description
extensionName String

A string value specifying the Spreadsheet extension name.

Returns

Type Description
ActionResult

A ActionResult object that represents the result of an action method.

Remarks

Use this method in an Action specified by the SpreadsheetSettings.CustomActionRouteValues property to return the result of the callback processing back to the client.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the GetCustomActionResult(String) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also