FileUploaderBuilder.LabelText(String) Method
Specifies the text displayed on the area to which an end user can drop a file. Mirrors the client-side labelText option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public FileUploaderBuilder LabelText(
string value
)
Parameters
| Name | Type | Description |
|---|---|---|
| value | String | The option value. |
Returns
| Type | Description |
|---|---|
| FileUploaderBuilder | A reference to this instance after the method is called. |
Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().FileUploader()
.LabelText("My text")
)
See Also