Skip to main content

MenuBuilder.Orientation(Orientation) Method

Specifies whether the menu has horizontal or vertical orientation. Mirrors the client-side orientation option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public MenuBuilder Orientation(
    Orientation value
)

Parameters

Name Type Description
value Orientation

The option value.

Returns

Type Description
MenuBuilder

A reference to this instance after the method is called.

Remarks

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

@(Html.DevExtreme().Menu()
    .Orientation(Orientation.Horizontal)
)
See Also