Skip to main content

TcxCustomVerticalGrid.IsRowVisible(TcxCustomRow) Method

Indicates whether a particular row is visible.

Declaration

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