C# Class SharpVectors.Dom.Events.Event

Summary description for Event.
Inheritance: IEvent
Show file Open project: codebutler/savagesvg Class Usage Examples

Protected Properties

Property Type Description
eventType string

Public Methods

Method Description
Event ( ) : System
Event ( string eventType, bool bubbles, bool cancelable ) : System
Event ( string namespaceUri, string eventType, bool bubbles, bool cancelable ) : System
InitEvent ( string eventType, bool bubbles, bool cancelable ) : void
InitEventNs ( string namespaceUri, string eventType, bool bubbles, bool cancelable ) : void
PreventDefault ( ) : void
StopImmediatePropagation ( ) : void
StopPropagation ( ) : void

Method Details

Event() public method

public Event ( ) : System
return System

Event() public method

public Event ( string eventType, bool bubbles, bool cancelable ) : System
eventType string
bubbles bool
cancelable bool
return System

Event() public method

public Event ( string namespaceUri, string eventType, bool bubbles, bool cancelable ) : System
namespaceUri string
eventType string
bubbles bool
cancelable bool
return System

InitEvent() public method

public InitEvent ( string eventType, bool bubbles, bool cancelable ) : void
eventType string
bubbles bool
cancelable bool
return void

InitEventNs() public method

public InitEventNs ( string namespaceUri, string eventType, bool bubbles, bool cancelable ) : void
namespaceUri string
eventType string
bubbles bool
cancelable bool
return void

PreventDefault() public method

public PreventDefault ( ) : void
return void

StopImmediatePropagation() public method

public StopImmediatePropagation ( ) : void
return void

StopPropagation() public method

public StopPropagation ( ) : void
return void

Property Details

eventType protected property

protected string eventType
return string