Forum
Please
Log In
to post a new message or reply to an existing one. If you are not registered, please
register.
NOTE: Some forums may be read-only if you are not currently subscribed to
our technical support services.
Subject |
Author |
Date |
|
John Pag
|
Apr 27, 2010 - 7:47 AM
|
BoundGrid control. how can i know above which cell is the mouse without pressing the button of the mouse? just when i move the mouse over the grid...
|
|
Technical Support
|
Apr 29, 2010 - 5:15 AM
|
Please use the following code: Cell cell = boundGridControl1.GetRenderableFromPoint(myPoint) as Cell;
if (cell != null)
{
// your code goes here
}
|
|