ASPxCardView.Styles Property
In This Article
Provides access to the style settings that control the appearance of the CardView elements.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public CardViewStyles Styles { get; }
#Property Value
Type | Description |
---|---|
Card |
A Card |
#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