Class ButtonBase
Inheritance
Namespace: Telerik.Blazor.Components.Common
Assembly: Telerik.Blazor.dll
Syntax
public class ButtonBase : BaseComponent, IDisposable
Constructors
ButtonBase()
Declaration
public ButtonBase()
Properties
AriaLabel
Defines the aria-label attribute of the button.
Declaration
public string AriaLabel { 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
The predefined Telerik Icon rendered in the button.
Declaration
public string Icon { get; set; }
Property Value
System.String
|
IconClass
A custom CSS class for the icon element.
Declaration
public string IconClass { get; set; }
Property Value
System.String
|
Id
Declaration
public string Id { get; set; }
Property Value
System.String
|
ImageUrl
The URL of an image inside the button.
Declaration
public string ImageUrl { 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
|
Shape
Specifies the shape of the button. Default value is Rectangle.
Declaration
public string Shape { 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
|
SpriteClass
The CSS class to define an image from a sprite.
Declaration
public string SpriteClass { 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
|