TextAreaLabelSettingsBuilder
Methods
Content(System.String)
Sets the inner HTML of the label.
Parameters
value - System.String
The value that configures the content.
Example
@(Html.Kendo().TextArea()
.Name("TextArea")
.Label(l => {
l.Content("Value");
})
)
Floating(System.Boolean)
If set to true, the component will be wrapped in a container that will allow the floating label functionality.
Parameters
value - System.Boolean
The value that configures the floating.
Example
@(Html.Kendo().TextArea()
.Name("TextArea")
.Label(l => {
l.Floating(true);
})
)