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

ASPxDataView.VisibleItems Property

Returns a collection of items which are currently displayed by the ASPxDataView on the screen.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public ReadOnlyCollection<DataViewItem> VisibleItems { get; }

Property Value

Type Description
ReadOnlyCollection<DataViewItem>

A System.Collections.ObjectModel.ReadOnlyCollection containing DataViewItem objects.

Remarks

Use the VisibleItems property to obtain a collection of those items from the ASPxDataView.Items collection which are currently visible on the screen.

Note

If the ASPxDataView control is bound to the data source, the ASPxDataView.Items and VisibleItems collections are identical.

See Also