XPTable.Models.TableModel.RowIndexAt C# (CSharp) Method

RowIndexAt() public method

Returns the index of the Row that lies on the specified position
public RowIndexAt ( int yPosition ) : int
yPosition int The y-coordinate to check
return int
        public int RowIndexAt(int yPosition)
        {
            return RowIndexAt(yPosition, false);
        }

Same methods

TableModel::RowIndexAt ( int yPosition, bool bvirtual ) : int