aspnet-devexpress-dot-web-e7431e14.md
Serves as a base for classes that provide style settings used to paint cards within the ASPxCardView.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public class CardViewCardStyle :
CardViewStyleBase
Public Class CardViewCardStyle
Inherits CardViewStyleBase
The following members return CardViewCardStyle objects:
Show 12 links
Web Forms:
<dx:ASPxCardView ID="CardView" runat="server" DataSourceID="InvoicesDataSource" Width="100%">
<Columns>
...
</Columns>
<Styles>
<Card Height="10px" />
</Styles>
</dx:ASPxCardView>
MVC:
@Html.DevExpress().CardView(settings => {
settings.Name = "cardView";
...
settings.Styles.Card.Height = Unit.Pixel(10);
}).Bind(Model).GetHtml()
Object MarshalByRefObject Component Style AppearanceStyleBase AppearanceStyle DevExpress.Web.GridStyleBase CardViewStyleBase CardViewCardStyle
See Also