C# 클래스 Skybound.Gecko.GeckoDomEventArgs

Provides data about a DOM event.
상속: System.EventArgs
파일 보기 프로젝트 열기: tophatmonocle/DirtyGecko 1 사용 예제들

공개 메소드들

메소드 설명
PreventDefault ( ) : void

If an event is cancelable, the preventDefault method is used to signify that the event is to be canceled, meaning any default action normally taken by the implementation as a result of the event will not occur. If, during any stage of event flow, the preventDefault method is called the event is canceled. Any default action associated with the event will not occur. Calling this method for a non-cancelable event has no effect. Once preventDefault has been called it will remain in effect throughout the remainder of the event's propagation. This method may be used during any stage of event flow.

StopPropagation ( ) : void

The stopPropagation method is used prevent further propagation of an event during event flow. If this method is called by any EventListener the event will cease propagating through the tree. The event will complete dispatch to all listeners on the current EventTarget before event flow stops. This method may be used during any stage of event flow.

비공개 메소드들

메소드 설명
GeckoDomEventArgs ( nsIDOMEvent ev ) : System

메소드 상세

PreventDefault() 공개 메소드

If an event is cancelable, the preventDefault method is used to signify that the event is to be canceled, meaning any default action normally taken by the implementation as a result of the event will not occur. If, during any stage of event flow, the preventDefault method is called the event is canceled. Any default action associated with the event will not occur. Calling this method for a non-cancelable event has no effect. Once preventDefault has been called it will remain in effect throughout the remainder of the event's propagation. This method may be used during any stage of event flow.
public PreventDefault ( ) : void
리턴 void

StopPropagation() 공개 메소드

The stopPropagation method is used prevent further propagation of an event during event flow. If this method is called by any EventListener the event will cease propagating through the tree. The event will complete dispatch to all listeners on the current EventTarget before event flow stops. This method may be used during any stage of event flow.
public StopPropagation ( ) : void
리턴 void