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

ImageZoomNavigatorItemCollection Class

A collection of ImageZoomNavigatorItem objects.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public class ImageZoomNavigatorItemCollection :
    ImageSliderItemCollectionBase

The following members return ImageZoomNavigatorItemCollection objects:

Remarks

The ImageZoomNavigatorItemCollection class manages a collection of ImageZoomNavigatorItem objects. The properties and methods exposed by the collection can be used to perform common collection operations, such as adding new or deleting existing items. Individual items can be accessed using indexer notation.

The ImageZoomNavigatorItemCollection collection can be accessed via the ASPxImageZoomNavigator.Items property.

Example

@Html.DevExpress().ImageZoomNavigator(settings => {
settings.Name = "zoomNavigator";
...
settings.Items.Add("~/Images/small/img1.jpg");
settings.Items.Add("~/Images/small/img2.jpg");
settings.Items.Add("~/Images/small/img3.jpg");
...
}).GetHtml()
See Also