TcxCustomRow.VisibleIndex Property
In This Article
Determines the position of the current visible row in the grid control.
#Declaration
Delphi
property VisibleIndex: Integer read;
#Property Value
Type |
---|
Integer |
#Remarks
The collection of items displayed in the grid control is determined by the TcxvgCustomViewInfo.VisibleRows property. The VisibleIndex determines the position of the current row in this collection.
It’s a zero-based index; all subsequent rows are numbered sequentially.
Note that if the specified row is invisible in the control this property returns -1. It may be in the following cases:
The value of the Visible property is False;
Its parent row is collapsed.
See Also