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