HtmlElementEventArgs::OffsetMousePosition Property
Gets or sets the position of the mouse cursor relative to the element that raises the event.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Property Value
Type: System.Drawing::PointThe mouse position relative to the element that raises the event.
The following HTML file demonstrates relative positioning of a TABLE inside of a BODY tag.
<HTML>
<BODY>
<TABLE style="position:relative;top:100px;left:100px;">
<TR>
<TD>Text</TD>
<TD>More text</TD>
</TR>
</TABLE>
</BODY>
</HTML>
The following code example displays the difference between MousePosition, ClientMousePosition and OffsetMousePosition when the user clicks on an element of the TABLE. ClientMousePosition will display coordinates relative to the upper-left corner of the document's client area. MousePosition will display coordinates relative to the upper-left corner of the TABLE. If you click on one of the lines of text, OffsetMousePosition will display coordinates relative to that TD element.
This example requires that you have configured Document_MouseDown as a handler for the MouseDown event on HtmlDocument.
Available since 2.0