Class RadzenHtmlEditorItalic
A RadzenHtmlEditor tool which makes the selection italic.
Inheritance
System.Object
Radzen.Blazor.RadzenHtmlEditorButtonBase
RadzenHtmlEditorItalic
Implements
IDisposable
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
Syntax
public class RadzenHtmlEditorItalic : RadzenHtmlEditorButtonBase, IDisposable
Examples
<RadzenHtmlEditor @bind-Value=@html>
<RadzenHtmlEditorItalic />
</RadzenHtmlEdito>
@code {
string html = "@lt;strong>Hello</strong> world!";
}
Properties
CommandName
Declaration
protected override string CommandName { get; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
Radzen.Blazor.RadzenHtmlEditorButtonBase.CommandName
Shortcut
Specifies the shortcut for the command. Set to "Ctrl+I"
by default.
Declaration
public override string Shortcut { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
Radzen.Blazor.RadzenHtmlEditorButtonBase.Shortcut
Title
Specifies the title (tooltip) displayed when the user hovers the tool. Set to "Italic"
by default.
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Implements
IDisposable