Class ButtonBase
Inherited Members
Namespace: Telerik.Blazor.Components.Common
Assembly: Telerik.Blazor.dll
Syntax
public class ButtonBase : BaseComponent, IDisposable
Constructors
ButtonBase()
Declaration
public ButtonBase()
Properties
AriaControls
Sets aria-controls attribute to the button.
Declaration
public string AriaControls { get; set; }
Property Value
System.String
|
AriaDescribedBy
Sets aria-describedby attribute to the button.
Declaration
public string AriaDescribedBy { get; set; }
Property Value
System.String
|
AriaLabel
Sets the aria-label attribute tо the button.
Declaration
public string AriaLabel { get; set; }
Property Value
System.String
|
AriaLabelledBy
Sets aria-labelledby attribute to the button.
Declaration
public string AriaLabelledBy { get; set; }
Property Value
System.String
|
ChildContent
Declaration
public RenderFragment ChildContent { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
Enabled
Whether the button is enabled.
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 the icon rendered in the button. 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
|
Id
Declaration
public virtual string Id { 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
|
Size
Specifies the size of the button. Default value is Medium.
Declaration
public string Size { get; set; }
Property Value
System.String
|
TabIndex
The tabindex of the button.
Declaration
public int TabIndex { get; set; }
Property Value
System.Int32
|
ThemeColor
Specifies the theme color of the button. Default value is Base.
Declaration
public string ThemeColor { get; set; }
Property Value
System.String
|
Title
The title attribute of the Button.
Declaration
public string Title { get; set; }
Property Value
System.String
|