Class BubblingEventArgs
Event Arguments for Tag elements. We can set flag delegate event to parent.
Inheritance
System.Object
BubblingEventArgs
Namespace: Syncfusion.Windows.Forms.HTMLUI
Assembly: Syncfusion.HTMLUI.Windows.dll
Syntax
public class BubblingEventArgs : EventArgs
Constructors
BubblingEventArgs(Object, EventArgs)
Initializes a new instance of the BubblingEventArgs class
Declaration
public BubblingEventArgs(object firstSender, EventArgs inherit)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | firstSender | Source of the event |
| System.EventArgs | inherit | Event arguments. |
Properties
Bubbling
Gets or sets a value indicating whether to delegate event to other elements.
Declaration
public bool Bubbling { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
EventArgs
Gets the standard event arguments.
Declaration
public EventArgs EventArgs { get; }
Property Value
| Type |
|---|
| System.EventArgs |
RootSender
Gets the first sender of the event.
Declaration
public object RootSender { get; }
Property Value
| Type |
|---|
| System.Object |