Class CustomToolbarItemModel
Defines customized toolbar items.
Inherited Members
Namespace: Syncfusion.Blazor.DocumentEditor
Assembly: Syncfusion.Blazor.DocumentEditor.dll
Syntax
public class CustomToolbarItemModel
Constructors
CustomToolbarItemModel()
Declaration
public CustomToolbarItemModel()
Properties
CssClass
Defines single/multiple classes (separated by space) to be used for customization of commands.
Declaration
[JsonPropertyName("cssClass")]
public string CssClass { get; set; }
Property Value
| Type |
|---|
| string |
Id
Specifies the unique ID to be used with button or input element of Toolbar items.
Declaration
[JsonPropertyName("id")]
public string Id { get; set; }
Property Value
| Type |
|---|
| string |
PrefixIcon
Defines single/multiple classes separated by space used to specify an icon for the button. The icon will be positioned before the text content if text is available, otherwise the icon alone will be rendered.
Declaration
[JsonPropertyName("prefixIcon")]
public string PrefixIcon { get; set; }
Property Value
| Type |
|---|
| string |
Text
Specifies the text to be displayed on the Toolbar button.
Declaration
[JsonPropertyName("text")]
public string Text { get; set; }
Property Value
| Type |
|---|
| string |
TooltipText
Specifies the text to be displayed on the Toolbar button.
Declaration
[JsonPropertyName("tooltipText")]
public string TooltipText { get; set; }
Property Value
| Type |
|---|
| string |