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