CardViewColumn.ExportCellStyle Property
In This Article
Gets the style settings defining the appearance of data cells when the card view is exported.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public CardViewExportAppearance ExportCellStyle { get; }
#Property Value
Type | Description |
---|---|
Card |
Style settings. |
#Remarks
Web Forms:
<dx:ASPxCardView ID="cardView" >
<Columns>
<dx:CardViewTextColumn FieldName="ProductName">
<ExportCellStyle BackColor="#FFFF66">
</ExportCellStyle>
</dx:CardViewTextColumn>
</Columns>
</dx:ASPxCardView>
MVC:
settings.Columns.Add(column => {
column.FieldName = "ProductName";
column.ExportCellStyle.BackColor="#FFFF66";
});
See Also