DataGridView.HitTestInfo equivalent in Infragistics.Win.UltraWinGrid.UltraGrid? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T18:38:21Z http://stackoverflow.com/feeds/question/71838 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/71838/datagridview-hittestinfo-equivalent-in-infragistics-win-ultrawingrid-ultragrid 2 DataGridView.HitTestInfo equivalent in Infragistics.Win.UltraWinGrid.UltraGrid? Spear http://stackoverflow.com/users/11948 2008-09-16T12:48:25Z 2010-02-21T12:50:04Z <p>Does anyone know if the Infragistics UltraGrid control provides functionality similar to that of DataGridView.HitTestInfo?</p> http://stackoverflow.com/questions/71838/datagridview-hittestinfo-equivalent-in-infragistics-win-ultrawingrid-ultragrid/72466#72466 0 Answer by Andrew for DataGridView.HitTestInfo equivalent in Infragistics.Win.UltraWinGrid.UltraGrid? Andrew http://stackoverflow.com/users/5662 2008-09-16T13:52:57Z 2008-09-16T13:52:57Z <p>There's a <code>.MousePosition</code> property which returns <code>System.Drawing.Point</code> and "Gets the position of the mouse cursor in screen coordinates" but I'm using an older version of their UltraWinGrid (2003).</p> <p>They have a <a href="http://www.infragistics.com/downloads/default.aspx" rel="nofollow">free trial download</a>, so you could see if they've added it to their latest and greatest :o)</p> http://stackoverflow.com/questions/71838/datagridview-hittestinfo-equivalent-in-infragistics-win-ultrawingrid-ultragrid/72687#72687 0 Answer by Spear for DataGridView.HitTestInfo equivalent in Infragistics.Win.UltraWinGrid.UltraGrid? Spear http://stackoverflow.com/users/11948 2008-09-16T14:10:56Z 2008-09-16T14:10:56Z <p>If you had a MouseEventHandler for the UltraGrid then you can do the following:</p> <pre><code>UltraGrid grid = (UltraGrid)sender; UIElement element = grid.DisplayLayout.UIElement.ElementFromPoint(new Point(e.X, e.Y)); </code></pre> <p>You can then cast the element depending on its expected type using element.GetContext():</p> <pre><code> UltraGridCell cell = (UltraGridCell)element.GetContext(typeof(UltraGridCell)); </code></pre> http://stackoverflow.com/questions/71838/datagridview-hittestinfo-equivalent-in-infragistics-win-ultrawingrid-ultragrid/72782#72782 1 Answer by Yacoder for DataGridView.HitTestInfo equivalent in Infragistics.Win.UltraWinGrid.UltraGrid? Yacoder http://stackoverflow.com/users/11640 2008-09-16T14:17:29Z 2008-09-16T14:17:29Z <p>Check <a href="http://www.abstraction-systems.com/ttf/HTML/TTFactory_TaskBasedTutorials_UltraWinGrid.htm" rel="nofollow">this</a> out.</p> <p>They don't convert the coordinates, but they use a special Infragistics grid event (<a href="http://help.infragistics.com/Help/NetAdvantage/NET/2008.2/CLR2.0/html/Infragistics2.Win.v8.2~Infragistics.Win.UltraComponentControlManagerBase~MouseEnterElement_EV.html" rel="nofollow">MouseEnterElement</a>) to get the element, which the mouse currently hovers over.</p> <p>Maybe it helps.</p>