Skip to main content

TcxCustomVerticalGrid.HasVisibleRows Method

Indicates whether the control has visible rows.

Declaration

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