Skip to main content
Tab

CardViewColumn.ExportCaptionStyle Property

Gets the style settings defining the caption appearance when the card view is exported.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public CardViewExportAppearance ExportCaptionStyle { get; }

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