Skip to main content
Tab

ASPxCardView.AllColumns Property

Gets the collection of all columns in the ASPxCardView control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public ReadOnlyGridColumnCollection<CardViewColumn> AllColumns { get; }

Property Value

Type Description
ReadOnlyGridColumnCollection<CardViewColumn>

A collection of all the columns in an ASPxCardView.

Remarks

The AllColumns property provides access to a collection that contains all the columns of the ASPxCardView control. This collection is read-only, since individual columns can be manipulated (added or removed) at the level of a control (ASPxCardView.Columns). The collection obtained by the AllColumns property allows you to easily iterate through all the control columns and access any required column identified by its specific setting or type.

See Also