HtmlEditorImageUploadBuilder.UploadDirectory(String) Method
In This Article
Specifies a target directory for uploaded images. Mirrors the client-side uploadDirectory option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public HtmlEditorImageUploadBuilder UploadDirectory(
string value
)
#Parameters
Name | Type | Description |
---|---|---|
value | String | The option value. |
#Returns
Type | Description |
---|---|
Html |
A reference to this instance after the method is called. |
#Remarks
@(Html.DevExtreme().HtmlEditor()
.ImageUpload(iupload => iupload
.UploadDirectory("/UploadDirectory")
)
)
See Also