ClassToolBarButtonBase
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public abstract class ToolBarButtonBase : ToolBarItemBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable, IToolBarItem
Inheritance: objectComponentBaseBaseComponentToolBarItemBaseToolBarButtonBase
Derived Classes:
Implements:
Inherited Members
Constructors
ToolBarButtonBase()
Declaration
protected ToolBarButtonBase()
Properties
AriaDescribedBy
Sets aria-describedby attribute to the element.
Declaration
[Parameter]
public string AriaDescribedBy { get; set; }
Property Value
AriaLabel
Sets aria-label attribute to the element.
Declaration
[Parameter]
public string AriaLabel { get; set; }
Property Value
AriaLabelledBy
Sets aria-labelledby attribute to the element.
Declaration
[Parameter]
public string AriaLabelledBy { get; set; }
Property Value
ChildContent
Specifies the ChildContent of the item.
Declaration
[Parameter]
public RenderFragment ChildContent { get; set; }
Property Value
Enabled
Specifies whether the item is enabled or not.
FillMode
Specifies the fill mode of the button. Default value is Solid.
Declaration
[Parameter]
public string FillMode { get; set; }
Property Value
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.
IsIconButton
Specifies if the item contains an icon.
Declaration
[Parameter]
public bool IsIconButton { get; set; }
Property Value
IsInsideButtonGroup
Declaration
[Parameter]
public bool IsInsideButtonGroup { get; set; }
Property Value
OnClick
Triggers when the button is clicked.
Declaration
[Parameter]
public EventCallback<MouseEventArgs> OnClick { get; set; }
Property Value
Overflow
Specifies how the ToolBar item overflows. Default value is Auto.
Declaration
[Parameter]
public ToolBarItemOverflow Overflow { get; set; }
Property Value
OverflowText
Specifies the text of the item in the overflow popup. If not specified, it will fallback to the default item's text.
Declaration
[Parameter]
public string OverflowText { get; set; }
Property Value
ThemeColor
Specifies the theme color of the button. Default value is Base.
Declaration
[Parameter]
public string ThemeColor { get; set; }
Property Value