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

GridViewExtension.ExportToXlsx(GridViewSettings, Object, XlsxExportOptions) Method

OBSOLETE

Use another overload of this method instead.

Exports the grid’s data to XLSX format, based on the provided settings.

Namespace: DevExpress.Web.Mvc

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

Declaration

[Obsolete("Use another overload of this method instead.")]
public static ActionResult ExportToXlsx(
    GridViewSettings settings,
    object dataObject,
    XlsxExportOptions exportOptions
)

Parameters

Name Type Description
settings GridViewSettings

A GridViewSettings object that contains GridView settings.

dataObject Object

An object representing the GridView’s data source.

exportOptions XlsxExportOptions

An XlsxExportOptions object that provides export options.

Returns

Type Description
ActionResult

A ActionResult encapsulating the result of the grid data export operation.

See Also