HtmlEditorImageUploadTabItemBuilder.Name(HtmlEditorImageUploadTab) Method
In This Article
Specifies the tab's name. Mirrors the client-side name option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public HtmlEditorImageUploadTabItemBuilder Name(
HtmlEditorImageUploadTab value
)
#Parameters
Name | Type | Description |
---|---|---|
value | Html |
An enumeration value. |
#Returns
Type | Description |
---|---|
Html |
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