Share via


DisplayTextExtensions.DisplayText Method (HtmlHelper, String)

 

Returns HTML markup for each property in the object that is represented by the specified expression.

Namespace:   System.Web.Mvc.Html
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Syntax

public static MvcHtmlString DisplayText(
    this HtmlHelper html,
    string name
)
public:
[ExtensionAttribute]
static MvcHtmlString^ DisplayText(
    HtmlHelper^ html,
    String^ name
)
static member DisplayText : 
        html:HtmlHelper *
        name:string -> MvcHtmlString
<ExtensionAttribute>
Public Shared Function DisplayText (
    html As HtmlHelper,
    name As String
) As MvcHtmlString

Parameters

  • name
    Type: System.String

    An expression that identifies the object that contains the properties to display.

Return Value

Type: System.Web.Mvc.MvcHtmlString

The HTML markup for each property in the object that is represented by the expression.

See Also

DisplayTextExtensions Class
System.Web.Mvc.Html Namespace

Return to top