HtmlEditorImageUploadTabItemBuilder.Name(HtmlEditorImageUploadTab) Method
Specifies the tab's name. Mirrors the client-side name option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public HtmlEditorImageUploadTabItemBuilder Name(
HtmlEditorImageUploadTab value
)
Parameters
Name | Type | Description |
---|---|---|
value | HtmlEditorImageUploadTab | An enumeration value. |
Returns
Type | Description |
---|---|
HtmlEditorImageUploadTabItemBuilder | A reference to this instance after the method is called. |
Remarks
@(Html.DevExtreme().HtmlEditor()
.ImageUpload(iupload => iupload
.Tabs(tabs => tabs {
.Add().Name("Url")
})
// ...
)
)
See Also