Class ButtonBase
Inheritance
System.Object
Telerik.Blazor.Components.Common.BaseComponent
ButtonBase
Namespace: Telerik.Blazor.Components.Common
Assembly: Telerik.Blazor.dll
Syntax
public class ButtonBase : BaseComponent, IDisposable
Constructors
ButtonBase()
Declaration
public ButtonBase()
Properties
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
|
Icon
The predefined Telerik Icon rendered in the button. Can take a member of the IconName class.
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
|
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
|
Title
The title attribute of the Button.
Declaration
public string Title { get; set; }
Property Value
System.String
|