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

ASPxCardView.Styles Property

Provides access to the style settings that control the appearance of the CardView elements.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public CardViewStyles Styles { get; }

Property Value

Type Description
CardViewStyles

A CardViewStyles object that provides style settings for view elements.

Remarks

The CardViewStyles object provides a number of properties that allow style settings of various CardView elements to be customized.

Example

<dx:ASPxCardView ID="CardView" runat="server" DataSourceID="InvoicesDataSource" Width="100%">
    <Columns>
    ...
    </Columns> 
    <Styles>
        <Card Height="10px" />
    </Styles>  
</dx:ASPxCardView>
See Also