Skip to main content
All docs
V25.1
  • Tab

    CardViewColumn.ExportCaptionStyle Property

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

    Namespace: DevExpress.Web

    Assembly: DevExpress.Web.v25.1.dll

    #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