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

ASPxCardView.AllColumns Property

Gets the collection of all columns in the ASPxCardView control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public ReadOnlyGridColumnCollection<CardViewColumn> AllColumns { get; }

Property Value

Type Description
ReadOnlyGridColumnCollection<CardViewColumn>

A ReadOnlyGridColumnCollection<T><CardViewColumn,> object that is 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