ASPxCardView.SettingsBehavior Property
In This Article
Provides access to the CardView’s behavior settings.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public ASPxCardViewBehaviorSettings SettingsBehavior { get; }
#Property Value
Type | Description |
---|---|
ASPx |
An ASPx |
#Example
The following example creates and initializes an ASPxCardView at runtime.
protected void Page_Load(object sender, EventArgs e)
{
ASPxCardView cv1 = new ASPxCardView();
cv1.ID = "ASPxCardView1";
cv1.KeyFieldName = "ProductID";
Page.Form.Controls.Add(cv1);
cv1.SettingsBehavior.AllowFocusedCard = true;
cv1.DataSourceID = "SqlDataSource1";
cv1.DataBind();
}
See Also