BuilderFactoryExtensions.BootstrapCheckBox(BuilderFactory) Method
In This Article
Creates a Check Box control.
Namespace: DevExpress.AspNetCore
Assembly: DevExpress.AspNetCore.Bootstrap.v18.2.dll
#Declaration
public static BootstrapCheckBoxBuilder BootstrapCheckBox(
this BuilderFactory builderFactory
)
#Parameters
Name | Type | Description |
---|---|---|
builder |
Builder |
A Builder |
#Returns
Type | Description |
---|---|
Bootstrap |
A builder for a Check Box control. |
#Remarks
IMPORTANT
Bootstrap Controls for ASP.
The code sample below demonstrates how you can use this method to create a Check Box control.
cshtml
@(Html.DevExpress()
.BootstrapCheckBox()
.Text("CheckBox"))
See Also