Material Design Checkboxes for Blazor, allow the user to select multiple options from a set.
| Name | Type | Description |
|---|---|---|
| TValue | Generic argument | bool, bool? |
| Attributes | Dictionary<String,Object> | Gets or sets a collection of additional attributes that will be applied to the created element. |
| ChildContent | RenderFragment | Child content of MatCheckbox |
| Class | String | Specifies one or more classnames for an DOM element. |
| Disabled | Boolean | |
| Id | String | |
| Indeterminate | Boolean | |
| InputAttributes | IDictionary<String,Object> | |
| InputValue | String | |
| Label | String | |
| RefBack | ForwardRef | |
| Style | String | Specifies an inline style for an DOM element. |
| ValidationDisabled | Boolean | |
| Value | TValue | Gets or sets the value of the input. This should be used with two-way binding. |
| ValueChanged | EventCallback<TValue> | Gets or sets a callback that updates the bound value. |
| ValueExpression | Expression<Func<TValue>> | Gets or sets an expression that identifies the bound value. |
| Ref | ElementReference | Returned ElementRef reference for DOM element. |