MVCxGridViewExportSettings.ExportedRowType Property
OBSOLETE
Use the ExportSelectedRowsOnly property instead.
Gets or sets which rows should be exported.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
[Obsolete("Use the ExportSelectedRowsOnly property instead.")]
public GridViewExportedRowType ExportedRowType { get; set; }
Property Value
Type | Description |
---|---|
GridViewExportedRowType | A GridViewExportedRowType enumeration value that specifies which rows should be exported. |
Available values:
Name | Description |
---|---|
All | The ASPxGridViewExporter exports all rows displayed within the ASPxGridView. |
Selected | The ASPxGridViewExporter exports only selected rows. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to ExportedRowType |
---|---|
GridViewSettings |
|
Remarks
Use the ExportedRowType property to specify whether all rows displayed within the GridView, or only selected rows, are to be exported.
See Also