Class ClickEventArgs
A class that holds options to control the toolbar clicked action.
Inheritance
System.Object
ClickEventArgs
Namespace: Syncfusion.Blazor.DocumentEditor
Assembly: Syncfusion.Blazor.DocumentEditor.dll
Syntax
public class ClickEventArgs : Object
Constructors
ClickEventArgs()
Declaration
public ClickEventArgs()
Properties
Cancel
Defines the prevent action.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Item
Defines the current Toolbar Item Object.
Declaration
public ItemModel Item { get; set; }
Property Value
Type | Description |
---|---|
ItemModel | The ItemModel object that represents the current toolbar item. |
Name
Specifies name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
OriginalEvent
Defines the current Event arguments.
Declaration
public MouseEventArgs OriginalEvent { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.Web.MouseEventArgs | The MouseEventArgs representing the current event arguments. |
Methods
Equals(ClickEventArgs)
Indicates whether the current object is equal to another object of the same type.
Declaration
public bool Equals(ClickEventArgs clickEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ClickEventArgs | clickEventArgs | An ClickEventArgs to compare. |
Returns
Type | Description |
---|---|
System.Boolean | true if the current object is equal to the other parameter; otherwise, false. |