TcxCustomVerticalGrid.IsRowVisible(TcxCustomRow) Method
In This Article
Indicates whether a particular row is visible.
#Declaration
Delphi
function IsRowVisible(ARow: TcxCustomRow): Boolean;
#Parameters
Name | Type |
---|---|
ARow | Tcx |
#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:
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