Skip to main content

ResizableBuilder.Content(String) Method

Specifies content for a Resizable control.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public ResizableBuilder Content(
    string content
)

Parameters

Name Type Description
content String

A string that specifies content.

Returns

Type Description
ResizableBuilder

A reference to this instance after the method is called.

Remarks

Refer to Use Markup to Specify Content for more information.

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