Skip to main content
A newer version of this page is available. .
Tab

CardViewColumn.ExportCaptionStyle Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public CardViewExportAppearance ExportCaptionStyle { get; }

Property Value

Type Description
CardViewExportAppearance

Style settings.

Remarks

WebForms:

<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