HtmlEditorToolbarBuilder.Container(String) Method
In This Article
Specifies the container in which to place the toolbar. Mirrors the client-side container option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public HtmlEditorToolbarBuilder Container(
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
Use the following notation to set the option’s value:
@(Html.DevExtreme().HtmlEditor()
.Toolbar(toolbar => toolbar
.Container("#elementId")
)
)
See Also