DXCollectionView.VisibleItemCount Property
Gets the total number of items displayed in the view.
Namespace: DevExpress.XamarinForms.CollectionView
Assembly: DevExpress.XamarinForms.CollectionView.dll
NuGet Package: DevExpress.XamarinForms.CollectionView
Declaration
public int VisibleItemCount { get; }
Property Value
Type | Description |
---|---|
Int32 | The number of rows displayed in the CollectionView. |
Remarks
The VisibleItemCount property returns the total number of group headers (if data is grouped) and data items that are not hidden within collapsed groups, including items outside the current viewport. To get the number of data items in the CollectionView, use the ItemCount property.
See Also