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.IsRowVisible(TcxCustomRow) Method

Indicates whether a particular row is visible.

#Declaration

Delphi
function IsRowVisible(ARow: TcxCustomRow): Boolean;

#Parameters

Name Type
ARow TcxCustomRow

#Returns

Type
Boolean

#Remarks

Use the IsRowVisible method to determine whether a specific grid row is visible.

The ARow parameter specifies the grid row being checked.

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

  1. When its Visible property returns False

  2. When the Visible property of its parent row returns False

To get a row’s parent row, you should use its Parent property.

Additionally, you can determine whether the vertical grid control contains any visible rows using the HasVisibleRows method.

See Also