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.FirstVisibleRow Method

Returns the first visible row within the grid.

#Declaration

Delphi
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