ImageZoomNavigatorItemCollection.Add() Method
In This Article
Adds a new item with the default settings to the end of the collection and returns the newly created object.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
#Returns
Type | Description |
---|---|
Image |
An Image |
#Remarks
@Html.DevExpress().ImageZoomNavigator(settings => {
settings.Name = "zoomNavigator";
...
settings.Items.Add(new ImageZoomNavigatorItem("~/Content/ImageZoom/overview_151233002.jpg",
"~/Content/ImageZoom/shoes/02_155325104.jpg"));
...
}).GetHtml()
See Also