GridViewExportStyles.Cell Property
In This Article
Gets the style settings defining the appearance of data cells when the grid is exported.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public GridViewExportAppearance Cell { get; }
#Property Value
Type | Description |
---|---|
Grid |
A Grid |
#Remarks
Note
These style settings are only in effect when the ASPx
Note that export properties of grid columns have a greater priority than the control’s export properties. Use the ExportCellStyle property to customize cell export styles.
<dx:ASPxGridView ID="grid" runat="server" ... >
...
<Columns>
<dx:GridViewDataColumn FieldName="ProductID">
<ExportCellStyle BorderSize="0" />
</dx:GridViewDataColumn>
</Columns>
</dx:ASPxGridView>
See Also