Class RadzenHtmlEditorAlignRight
A RadzenHtmlEditor tool which aligns the selection to the right.
Inherited Members
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
Syntax
public class RadzenHtmlEditorAlignRight : RadzenHtmlEditorButtonBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Examples
<RadzenHtmlEditor @bind-Value=@html>
<RadzenHtmlEditorAlignRight />
</RadzenHtmlEdito>
@code {
string html = "@lt;strong>Hello</strong> world!";
}
Constructors
RadzenHtmlEditorAlignRight()
A RadzenHtmlEditor tool which aligns the selection to the right.
Declaration
public RadzenHtmlEditorAlignRight()
Examples
<RadzenHtmlEditor @bind-Value=@html>
<RadzenHtmlEditorAlignRight />
</RadzenHtmlEdito>
@code {
string html = "@lt;strong>Hello</strong> world!";
}
Properties
CommandName
Specifies the name of the command. It is available as CommandName when Execute is raised.
Declaration
protected override string CommandName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Radzen.Blazor.RadzenHtmlEditorButtonBase.CommandName
Title
Specifies the title (tooltip) displayed when the user hovers the tool. Set to "Align right"
by default.
Declaration
[Parameter]
public string Title { get; set; }
Property Value
Type | Description |
---|---|
string |
Methods
BuildRenderTree(RenderTreeBuilder)
A RadzenHtmlEditor tool which aligns the selection to the right.
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Type | Name | Description |
---|---|---|
RenderTreeBuilder | __builder |