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