Skip to main content

GalleryBuilder.WrapAround(Boolean) Method

Specifies whether or not to display parts of previous and next images along the sides of the current image. Mirrors the client-side wrapAround option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public GalleryBuilder WrapAround(
    bool value
)

Parameters

Name Type Description
value Boolean

The option value.

Returns

Type Description
GalleryBuilder

A reference to this instance after the method is called.

Remarks

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

@(Html.DevExtreme().Gallery()
    .WrapAround(true)
)
See Also