Skip to main content
API

ResponsiveBoxBuilder.SingleColumnScreen(String) Method

Specifies on which screens all layout elements should be arranged in a single column. Accepts a single or several size qualifiers separated by a space. Mirrors the client-side singleColumnScreen option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public ResponsiveBoxBuilder SingleColumnScreen(
    string value
)

Parameters

Name Type Description
value String

The option value.

Returns

Type Description
ResponsiveBoxBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().ResponsiveBox()
    .SingleColumnScreen("md")
)
See Also