Class ToolBarButtonBase
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public abstract class ToolBarButtonBase : ToolBarItemBase, IDisposable, IToolBarOverflowItem, IToolBarItem
Constructors
ToolBarButtonBase()
Declaration
protected ToolBarButtonBase()
Properties
AriaDescribedBy
Sets aria-describedby attribute to the element.
Declaration
public string AriaDescribedBy { get; set; }
Property Value
System.String
|
AriaLabel
Sets aria-label attribute to the element.
Declaration
public string AriaLabel { get; set; }
Property Value
System.String
|
AriaLabelledBy
Sets aria-labelledby attribute to the element.
Declaration
public string AriaLabelledBy { get; set; }
Property Value
System.String
|
ChildContent
Specifies the ChildContent of the item.
Declaration
public RenderFragment ChildContent { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
Enabled
Specifies whether the item is enabled or not.
Declaration
public bool Enabled { get; set; }
Property Value
System.Boolean
|
FillMode
Specifies the fill mode of the button. Default value is Solid.
Declaration
public string FillMode { get; set; }
Property Value
System.String
|
Icon
Specifies an icon rendered in the item. You can use either a predefined Telerik Icon or a custom one. Refer to Icons - Documentation for more information on how icons work.
Declaration
public object Icon { get; set; }
Property Value
System.Object
|
IsIconButton
Specifies if the item contains an icon.
Declaration
public bool IsIconButton { get; set; }
Property Value
System.Boolean
|
IsInsideButtonGroup
Declaration
public bool IsInsideButtonGroup { get; set; }
Property Value
System.Boolean
|
OnClick
Triggers when the button is clicked.
Declaration
public EventCallback<MouseEventArgs> OnClick { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<Microsoft.AspNetCore.Components.Web.MouseEventArgs>
|
Overflow
Specifies how the ToolBar item overflows. Default value is Auto.
Declaration
public ToolBarItemOverflow Overflow { get; set; }
Property Value
ToolBarItemOverflow
|
OverflowText
Specifies the text of the item in the overflow popup. If not specified, it will fallback to the default item's text.
Declaration
public string OverflowText { get; set; }
Property Value
System.String
|
Rounded
Specifies the roundness of the button. Default value is Medium.
Declaration
public string Rounded { get; set; }
Property Value
System.String
|
ThemeColor
Specifies the theme color of the button. Default value is Base.
Declaration
public string ThemeColor { get; set; }
Property Value
System.String
|
Title
Specifies the title of the item.
Declaration
public string Title { get; set; }
Property Value
System.String
|
Methods
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
System.Threading.Tasks.Task
|