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

SlideOutViewBuilder.Content(String) Method

Specifies content for a SlideOutView control.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public SlideOutViewBuilder Content(
    string content
)

Parameters

Name Type Description
content String

A string that specifies content.

Returns

Type Description
SlideOutViewBuilder

A reference to this instance after the method is called.

Remarks

Refer to Use Markup to Specify Content for more information.

@(Html.DevExtreme().SlideOutView()
    .Content("<p>SlideOutView content</p>")
)
See Also