Skip to main content
A newer version of this page is available. .

DrawerBuilder.Content(RazorBlock) Method

Specifies content for a Drawer control.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public DrawerBuilder Content(
    RazorBlock content
)

Parameters

Name Type Description
content RazorBlock

The Razor @<text> block that specifies content.

Returns

Type Description
DrawerBuilder

A reference to this instance after the method is called.

Remarks

Refer to Use Markup to Specify Content for more information.

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