Skip to main content
Tab

ASPxGridView.VisibleRowCount Property

Gets the number of visible rows within the ASPxGridView.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public int VisibleRowCount { get; }

Property Value

Type Description
Int32

The number of visible rows within the ASPxGridView.

Remarks

The VisibleRowCount property returns the number of visible rows that the grid displays within all its pages. These include both data rows and group rows (if data is grouped). Rows contained within collapsed group rows are not counted. If data is filtered, the VisibleRowCount property returns the number of filtered rows.

A user can see the number of visible rows within the Pager:

ASPxGridView_VisibleRowCount

To learn more, see Traversing Rows.

The following code snippets (auto-collected from DevExpress Examples) contain references to the VisibleRowCount property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also