Class HtmlCommandArgs
Command arguments for manipulating the HTML content of the editor (such as inserting HTML).
Namespace: Telerik.Blazor.Components.Editor
Assembly: Telerik.Blazor.dll
Syntax
public class HtmlCommandArgs : ToolCommandArgsBase
Constructors
HtmlCommandArgs()
Declaration
public HtmlCommandArgs()
HtmlCommandArgs(String, String)
Declaration
public HtmlCommandArgs(string commandName, string value)
Parameters
System.String
commandName
|
System.String
value
|
HtmlCommandArgs(String, String, Boolean)
Declaration
public HtmlCommandArgs(string commandName, string value, bool inline)
Parameters
System.String
commandName
|
System.String
value
|
System.Boolean
inline
|
Properties
Inline
Defines whether the inserted value is inline element. By default the command works only with block nodes, and wraps any inline element into a paragraph.
Declaration
public bool Inline { get; set; }
Property Value
System.Boolean
|
Value
The value for the command - the new HTML string.
Declaration
public string Value { get; set; }
Property Value
System.String
|