HtmlDocument.GetElementFromPoint(Point) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检索位于指定工作区坐标位置的 HTML 元素。
public:
System::Windows::Forms::HtmlElement ^ GetElementFromPoint(System::Drawing::Point point);
public System.Windows.Forms.HtmlElement GetElementFromPoint (System.Drawing.Point point);
public System.Windows.Forms.HtmlElement? GetElementFromPoint (System.Drawing.Point point);
member this.GetElementFromPoint : System.Drawing.Point -> System.Windows.Forms.HtmlElement
Public Function GetElementFromPoint (point As Point) As HtmlElement
参数
- point
- Point
屏幕上的元素的 x,y 位置,该位置相对于文档的左上角。
返回
文档中位于指定屏幕位置的 HtmlElement。
示例
下面的代码示例检测对文档的单击,查找 元素,并使用 ScrollIntoView 将元素与网页顶部对齐。
private void Document_Click(Object sender, HtmlElementEventArgs e)
{
if (webBrowser1.Document != null)
{
HtmlElement elem = webBrowser1.Document.GetElementFromPoint(e.ClientMousePosition);
elem.ScrollIntoView(true);
}
}
Private Sub Document_Click(ByVal sender As Object, ByVal e As HtmlElementEventArgs)
If (WebBrowser1.Document IsNot Nothing) Then
Dim Elem As HtmlElement = WebBrowser1.Document.GetElementFromPoint(e.ClientMousePosition)
Elem.ScrollIntoView(True)
End If
End Sub
注解
GetElementFromPoint 使用客户端坐标,其中为文档左上角分配的值 (0,0) 。 可以使用 属性获取 Position 光标当前位置的客户端坐标。