Class GridHandledEventArgs
Provides data for events that can be handled completely in an event handler.
Inheritance
System.Object
GridHandledEventArgs
Inherited Members
Namespace: Syncfusion.UI.Xaml.Grids
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public class GridHandledEventArgs : GridEventArgs
Constructors
GridHandledEventArgs(Boolean, Object)
Initializes a new instance of GridHandledEventArgs class.
Declaration
public GridHandledEventArgs(bool handled, object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | handled | Indicates whether the event handled completely. |
System.Object | originalSource | The original reporting source that raised the event. |
GridHandledEventArgs(Object)
Initializes a new instance of the GridHandledEventArgs class.
Declaration
public GridHandledEventArgs(object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSource | The original reporting source that raised the event. |
Properties
Handled
Gets or sets a value that indicates whether the event handler has been handled completely and no further processing should be happened to the event.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the event handled completely; otherwise, false. |