Skip to main content

HtmlEditorBuilder.Content(RazorBlock) Method

Specifies content for an HtmlEditor control.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public HtmlEditorBuilder Content(
    RazorBlock content
)

Parameters

Name Type Description
content RazorBlock

The Razor @<text> block that specifies content.

Returns

Type Description
HtmlEditorBuilder

A reference to this instance after the method is called.

Remarks

Refer to Use Markup to Specify Content for more information.

@(Html.DevExtreme().HtmlEditor()
    .Content(@<text>
        <p>HtmlEditor content</p>
    </text>)
)
See Also