Skip to main content

TcxCustomVerticalGrid.FirstVisibleRow Method

Returns the first visible row within the grid.

Declaration

function FirstVisibleRow: TcxCustomRow;

Returns

Type
TcxCustomRow

Remarks

Use the FirstVisibleRow to get access to the row located at the top of the grid.

Note

if the vertical grid contains no visible rows the method returns nil, so you should always consider checking the return value against nil before using the object.

Additionally, you can get access to the first row (visible or not) by using the FirstRow method.

See Also