DataGridView.HitTestInfo equivalent in Infragistics.Win.UltraWinGrid.UltraGrid? - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T18:38:21Zhttp://stackoverflow.com/feeds/question/71838http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/71838/datagridview-hittestinfo-equivalent-in-infragistics-win-ultrawingrid-ultragrid2DataGridView.HitTestInfo equivalent in Infragistics.Win.UltraWinGrid.UltraGrid?Spearhttp://stackoverflow.com/users/119482008-09-16T12:48:25Z2010-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#724660Answer by Andrew for DataGridView.HitTestInfo equivalent in Infragistics.Win.UltraWinGrid.UltraGrid?Andrewhttp://stackoverflow.com/users/56622008-09-16T13:52:57Z2008-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#726870Answer by Spear for DataGridView.HitTestInfo equivalent in Infragistics.Win.UltraWinGrid.UltraGrid?Spearhttp://stackoverflow.com/users/119482008-09-16T14:10:56Z2008-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#727821Answer by Yacoder for DataGridView.HitTestInfo equivalent in Infragistics.Win.UltraWinGrid.UltraGrid?Yacoderhttp://stackoverflow.com/users/116402008-09-16T14:17:29Z2008-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>