Class ClickEventArgs
A class that holds options to control the toolbar clicked action.
Inherited Members
Namespace: Syncfusion.Blazor.DocumentEditor
Assembly: Syncfusion.Blazor.DocumentEditor.dll
Syntax
public class ClickEventArgs
Constructors
ClickEventArgs()
Declaration
public ClickEventArgs()
Properties
Cancel
Defines the prevent action.
Declaration
[JsonPropertyName("cancel")]
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
Item
Defines the current Toolbar Item Object.
Declaration
[JsonPropertyName("item")]
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
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |
OriginalEvent
Defines the current Event arguments.
Declaration
[JsonPropertyName("originalEvent")]
public MouseEventArgs OriginalEvent { get; set; }
Property Value
| Type | Description |
|---|---|
| MouseEventArgs | The MouseEventArgs representing the current event arguments. |