Class CommentDeleteEventArgs
This event args provides the necessary information about comment delete.
Inherited Members
Namespace: Syncfusion.Blazor.DocumentEditor
Assembly: Syncfusion.Blazor.DocumentEditor.dll
Syntax
public class CommentDeleteEventArgs
Constructors
CommentDeleteEventArgs()
Declaration
public CommentDeleteEventArgs()
Properties
Author
Comment author.
Declaration
[JsonPropertyName("author")]
public string Author { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |
Cancel
Specifies whether the event is handled or not.
Declaration
[JsonPropertyName("cancel")]
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|