Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCustomVerticalGrid.HasVisibleRows Method

Indicates whether the control has visible rows.

#Declaration

Delphi
function HasVisibleRows: Boolean;

#Returns

Type
Boolean

#Remarks

Use the HasVisibleRows to determine whether the grid control contains any visible rows.

Note that a grid row can be invisible in the following two cases:

  1. Its Visible property is set to False

  2. The Visible property of its parent row is set to False

Additionally, you can check if a specific grid row is visible using the IsRowVisible method.

To determine whether the grid contains any rows (visible and/or hidden), you should use the HasRows method instead.

See Also