Class ToolbarStatusEventArgs
Provides information about UpdatedToolbarStatus events.
Inheritance
Namespace: Syncfusion.Blazor.RichTextEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class ToolbarStatusEventArgs : Object
Remarks
This class reveals the status of editor toolbar items, assisting in maintaining toolbar synchronization with content state.
Constructors
ToolbarStatusEventArgs()
Declaration
public ToolbarStatusEventArgs()
Properties
Html
Gets the HTML editor toolbar items status.
Declaration
public HtmlStatus Html { get; set; }
Property Value
Type | Description |
---|---|
HtmlStatus | An instance of HtmlStatus that represents the status of the HTML editor toolbar items. |
Remarks
The Html property reveals which HTML toolbar options are active, disabled, or otherwise configured.
Markdown
Gets the Markdown editor toolbar items status.
Declaration
public MarkdownStatus Markdown { get; set; }
Property Value
Type | Description |
---|---|
MarkdownStatus | An instance of MarkdownStatus class representing the status of toolbar items for the Markdown editor. |
Remarks
The Markdown property holds details on the active and passive states of Markdown toolbar features.
Redo
Gets the Redo tool's current status.
Declaration
public bool Redo { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
The Redo property indicates whether redo actions are currently usable.
Undo
Gets the Undo tool's current status.
Declaration
public bool Undo { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
The Undo property shows the availability of undo capabilities in the current session.