ImageZoomNavigatorItemCollection.Add(String, String, String, String, String) Method
Adds a new item with the specified settings to the end of the collection and returns the newly created object.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Parameters
Name | Type | Description |
---|---|---|
imageUrl | String | A String value specifying the path to the item image. Initializes the item’s ImageZoomNavigatorItem.ImageUrl property. |
largeImageUrl | String | A String value specifying the path to the item large image. Initializes the item’s ImageZoomNavigatorItem.LargeImageUrl property. |
thumbnailUrl | String | A String value specifying the path to the item thumbnail. Initializes the item’s ImageZoomNavigatorItem.ThumbnailUrl property. |
zoomWindowText | String | A String value specifying the item’s zoom window text. Initializes the item’s ImageZoomNavigatorItem.ZoomWindowText property. |
expandWindowText | String | A String value specifying the item’s expand window text. Initializes the item’s ImageZoomNavigatorItem.ExpandWindowText property. |
Returns
Type | Description |
---|---|
ImageZoomNavigatorItem | An ImageZoomNavigatorItem object that is the newly created item. |
Remarks
@Html.DevExpress().ImageZoomNavigator(settings => {
settings.Name = "zoomNavigator";
...
settings.Items.Add("~/Images/small/img1.jpg", "~/Images/large/img1.jpg", "~/Thumbs/img1.jpg",
"Zoom Sample Text", "Expand Sample Text");
...
}).GetHtml()