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

ImageZoomNavigatorExtension.BindToFolder(String) Method

Binds the ImageZoomNavigator to the folder specified by its name.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v18.2.dll

Declaration

public ImageZoomNavigatorExtension BindToFolder(
    string path
)

Parameters

Name Type Description
path String

A string specifying the path to the folder that contains images.

Returns

Type Description
ImageZoomNavigatorExtension

An extension object.

Remarks

@Html.DevExpress().ImageZoomNavigator(settings => {
    settings.Name = "zoomNavigator";
    ...
}).BindToFolder("~/Content/ImageZoom/shoes/").GetHtml()

Online Demo

Image Zoom Navigator

See Also