Back to Devexpress

ImageZoomNavigatorItemCollection Class

aspnet-devexpress-dot-web-1c067aff.md

latest3.4 KB
Original Source

ImageZoomNavigatorItemCollection Class

A collection of ImageZoomNavigatorItem objects.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public class ImageZoomNavigatorItemCollection :
    ImageSliderItemCollectionBase
vb
Public Class ImageZoomNavigatorItemCollection
    Inherits ImageSliderItemCollectionBase

The following members return ImageZoomNavigatorItemCollection objects:

LibraryRelated API Members
ASP.NET Web Forms ControlsASPxImageZoomNavigator.Items
ASP.NET MVC ExtensionsImageZoomNavigatorSettings.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

csharp
@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()

Implements

IList

ICollection

IStateManager

DevExpress.Utils.IAssignableCollection

IList<ImageSliderItemBase>

ICollection<ImageSliderItemBase>

IEnumerable<ImageSliderItemBase>

IEnumerable

Inheritance

Object StateManagedCollectionBase Collection Collection<ImageSliderItemBase> ImageSliderItemCollectionBase ImageZoomNavigatorItemCollection

See Also

ImageZoomNavigatorItemCollection Members

DevExpress.Web Namespace