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);
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 속성입니다.