HtmlElementEventArgs 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
HtmlDocument 및 HtmlElement에 정의된 이벤트에 대한 데이터를 제공합니다.
public ref class HtmlElementEventArgs sealed : EventArgs
public sealed class HtmlElementEventArgs : EventArgs
type HtmlElementEventArgs = class
inherit EventArgs
Public NotInheritable Class HtmlElementEventArgs
Inherits EventArgs
- 상속
예제
다음 코드 예제에서는이 형식 사용 하는 방법을 보여 줍니다. 예제에서는 이벤트 처리기에서 보고서를 Click 이벤트입니다. 이 보고서를 통해 이벤트 발생 하 고 도움이 될 수 있습니다 디버깅 하는 경우를 학습할 수 있습니다. 자주 발생 하는 이벤트 또는 여러 이벤트를 보고 하려면 바꾸는 것이 좋습니다 Show 사용 하 여 Console.WriteLine 줄에 메시지를 추가 또는 TextBox합니다.
예제 코드를 실행 하려면 형식의 인스턴스를 포함 하는 프로젝트에 붙여넣습니다 HtmlDocument 라는 HtmlDocument1
합니다. 연결 된 이벤트 처리기는 확인 된 Click 이벤트입니다.
private void HtmlDocument1_Click(Object sender, HtmlElementEventArgs e) {
System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "MouseButtonsPressed", e.MouseButtonsPressed );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "ClientMousePosition", e.ClientMousePosition );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "OffsetMousePosition", e.OffsetMousePosition );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "MousePosition", e.MousePosition );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "BubbleEvent", e.BubbleEvent );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "KeyPressedCode", e.KeyPressedCode );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "AltKeyPressed", e.AltKeyPressed );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "CtrlKeyPressed", e.CtrlKeyPressed );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "ShiftKeyPressed", e.ShiftKeyPressed );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "EventType", e.EventType );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "ReturnValue", e.ReturnValue );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "FromElement", e.FromElement );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "ToElement", e.ToElement );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "Click Event" );
}
Private Sub HtmlDocument1_Click(sender as Object, e as HtmlElementEventArgs) _
Handles HtmlDocument1.Click
Dim messageBoxVB as New System.Text.StringBuilder()
messageBoxVB.AppendFormat("{0} = {1}", "MouseButtonsPressed", e.MouseButtonsPressed)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "ClientMousePosition", e.ClientMousePosition)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "OffsetMousePosition", e.OffsetMousePosition)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "MousePosition", e.MousePosition)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "BubbleEvent", e.BubbleEvent)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "KeyPressedCode", e.KeyPressedCode)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "AltKeyPressed", e.AltKeyPressed)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "CtrlKeyPressed", e.CtrlKeyPressed)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "ShiftKeyPressed", e.ShiftKeyPressed)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "EventType", e.EventType)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "ReturnValue", e.ReturnValue)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "FromElement", e.FromElement)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "ToElement", e.ToElement)
messageBoxVB.AppendLine()
MessageBox.Show(messageBoxVB.ToString(),"Click Event")
End Sub
설명
HtmlElementEventArgs 에 있는 동일한 정보를 캡슐화 합니다 window.event
HTML 페이지에 대 한 활성 스크립트를 작성 하는 경우 또는 관리 되지 않는 HTML DOM에 대해 프로그래밍할 때 개체입니다.
대부분의 경우 를 사용하여 ToElement 이벤트 작업을 FromElement 수신하는 HTML 요소를 찾고 남아 있는 HTML 요소를 찾을 수 있습니다. 그러나 모든 이벤트가 이러한 속성에 대한 값을 제공하는 것은 아닙니다.
HTML DOM의 많은 이벤트가 취소 되는 않는 경우 해당 부모 요소에 전송 됩니다. 이 이벤트 버블링 라고 합니다. 경우는 SPAN
내부에 DIV
클릭 이벤트가 발생 한 다음 클릭 한 번으로 수신를 SPAN
먼저 다음를 DIV
, 마지막으로 HTML 페이지의 BODY
요소.
BubbleEvent 는 이벤트가 이러한 방식으로 동작하는지 여부를 제어합니다.
속성
AltKeyPressed |
이 이벤트가 발생할 때 Alt 키를 눌렀는지 여부를 나타냅니다. |
BubbleEvent |
현재 이벤트가 HTML 문서 개체 모델의 전체 요소 계층에서 버블링되는지 여부를 나타내는 값을 가져오거나 설정합니다. |
ClientMousePosition |
문서의 클라이언트 영역에 있는 마우스 커서의 위치를 가져오거나 설정합니다. |
CtrlKeyPressed |
이 이벤트가 발생할 때 Ctrl 키를 눌렀는지 여부를 나타냅니다. |
EventType |
발생한 이벤트의 이름을 가져옵니다. |
FromElement |
마우스 포인터가 움직이고 있는 반대 방향에 있는 HtmlElement를 가져옵니다. |
KeyPressedCode | |
MouseButtonsPressed | |
MousePosition |
상대 위치의 부모 요소를 기준으로 마우스 커서의 위치를 가져오거나 설정합니다. |
OffsetMousePosition |
이벤트를 발생시킨 요소를 기준으로 마우스 커서의 위치를 가져오거나 설정합니다. |
ReturnValue |
처리된 이벤트의 반환 값을 가져오거나 설정합니다. |
ShiftKeyPressed |
이 이벤트가 발생할 때 Shift 키를 눌렀는지 여부를 나타냅니다. |
ToElement |
마우스 포인터가 움직이고 있는 방향에 있는 HtmlElement를 가져옵니다. |
메서드
Equals(Object) |
지정된 개체가 현재 개체와 같은지 확인합니다. (다음에서 상속됨 Object) |
GetHashCode() |
기본 해시 함수로 작동합니다. (다음에서 상속됨 Object) |
GetType() |
현재 인스턴스의 Type을 가져옵니다. (다음에서 상속됨 Object) |
MemberwiseClone() |
현재 Object의 단순 복사본을 만듭니다. (다음에서 상속됨 Object) |
ToString() |
현재 개체를 나타내는 문자열을 반환합니다. (다음에서 상속됨 Object) |
적용 대상
추가 정보
.NET