Skip to main content
Tab

ImageZoomNavigatorItemCollection Class

A collection of ImageZoomNavigatorItem objects.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public class ImageZoomNavigatorItemCollection :
    ImageSliderItemCollectionBase

The following members return ImageZoomNavigatorItemCollection objects:

Library Related API Members
ASP.NET Web Forms Controls ASPxImageZoomNavigator.Items
ASP.NET MVC Extensions ImageZoomNavigatorSettings.Items

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