DropDownBoxBuilder.Content(RazorBlock) Method
In This Article
Specifies content for a DropDownBox control.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public DropDownBoxBuilder Content(
RazorBlock content
)
#Parameters
Name | Type | Description |
---|---|---|
content | Razor |
The Razor |
#Returns
Type | Description |
---|---|
Drop |
A reference to this instance after the method is called. |
#Remarks
Refer to Use Markup to Specify Content for more information.
@(Html.DevExtreme().DropDownBox()
.Content(@<text>
<p>DropDownBox content</p>
</text>)
)
See Also