Class TelerikCheckBox<TValue>
The class for the Telerik Checkbox component.
Inheritance
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TelerikCheckBox<TValue> : TelerikInputBase<TValue>, IDisposable, ILabelableInput
Type Parameters
TValue
|
Constructors
TelerikCheckBox()
Declaration
public TelerikCheckBox()
Properties
AriaLabel
Defines the aria-label attribute of the checkbox.
Declaration
public string AriaLabel { get; set; }
Property Value
System.String
|
Indeterminate
Defines whether the checkbox support indeterminate state. If set to true, when the Value is null, indeterminate style is applied.
Declaration
public bool Indeterminate { get; set; }
Property Value
System.Boolean
|
IndeterminateChanged
Fires when the indeterminate state has changed. Used for two-way binding.
Declaration
public EventCallback<bool> IndeterminateChanged { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<System.Boolean>
|
Rounded
Specifies the rounded setting of the checkbox. Default value is Medium.
Declaration
public string Rounded { get; set; }
Property Value
System.String
|
Size
Specifies the size of the checkbox. Default value is Medium.
Declaration
public string Size { get; set; }
Property Value
System.String
|
Title
Declaration
public string Title { get; set; }
Property Value
System.String
|
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder
__builder
|
Dispose()
Declaration
public override void Dispose()
Overrides
OnAfterRenderAsync(Boolean)
Declaration
protected override Task OnAfterRenderAsync(bool firstRender)
Parameters
System.Boolean
firstRender
|
Returns
System.Threading.Tasks.Task
|
Overrides
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
System.Threading.Tasks.Task
|
Overrides
SetParametersAsync(ParameterView)
Declaration
public override Task SetParametersAsync(ParameterView parameters)
Parameters
Microsoft.AspNetCore.Components.ParameterView
parameters
|
Returns
System.Threading.Tasks.Task
|