aspnet-devexpress-dot-web-1c067aff.md
A collection of ImageZoomNavigatorItem objects.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public class ImageZoomNavigatorItemCollection :
ImageSliderItemCollectionBase
Public Class ImageZoomNavigatorItemCollection
Inherits ImageSliderItemCollectionBase
The following members return ImageZoomNavigatorItemCollection objects:
| Library | Related API Members |
|---|---|
| ASP.NET Web Forms Controls | ASPxImageZoomNavigator.Items |
| ASP.NET MVC Extensions | ImageZoomNavigatorSettings.Items |
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.
@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()
DevExpress.Utils.IAssignableCollection
ICollection<ImageSliderItemBase>
IEnumerable<ImageSliderItemBase>
Object StateManagedCollectionBase Collection Collection<ImageSliderItemBase> ImageSliderItemCollectionBase ImageZoomNavigatorItemCollection
See Also