Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
14647 | Jun 1,2004 06:28 PM UTC | Jun 22,2004 09:48 PM UTC | WinForms | 2 |
![]() |
Tags: GridControl |
GridBoundRecordState rs = this.grid.Binder.GetRecordStateFromRowIndex(rowIndex);
This GridBoundRecordState holds the information you requested, rs.LevelIndex and rs.Position.
To get the rowIndex under the current mouse location, you can use code like;
int row, col;
Point pt = this.grid.PointToClient(Control.MousePosition);
this.grid.PointToRowCol(pt, out row, out col, -1);
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.