←Select platform

ImageUrl Property

Summary

URL to the image to be displayed in the viewer (single item mode).

Syntax
C#
C++/CLI
public virtual Uri ImageUrl { get; set; } 
public:  
   virtual property System::Uri^ ImageUrl 
   { 
      System::Uri^ get() 
      void set(System::Uri^ value) 
   } 

Property Value

The URL to the image to be displayed in the viewer (single item mode). Default value is null.

Remarks

This is a helper property for applications that uses ImageViewer in single item mode. It is a shortcut to Url of ActiveItem. For more information, refer to Image Viewer in Single Item Mode.

Example
C#
using Leadtools; 
using Leadtools.Controls; 
using Leadtools.Codecs; 
using Leadtools.Drawing; 
 
using Leadtools.ImageProcessing; 
using Leadtools.ImageProcessing.Color; 
using Leadtools.Svg; 
 
public void ImageViewerItemUrl_Example() 
{ 
   string[] urls = 
   { 
      @"http://localhost/myimages/layouttest/200by100_1.png", 
      @"http://localhost/myimages/layouttest/200by100_2.png", 
      @"http://localhost/myimages/layouttest/200by100_3.png", 
      @"http://localhost/myimages/layouttest/100by200_1.png", 
      @"http://localhost/myimages/layouttest/100by200_2.png", 
      @"http://localhost/myimages/layouttest/100by200_3.png" 
   }; 
 
   int itemIndex = 0; 
   _imageViewer.BeginTransform(); 
   for (int urlIndex = 0; urlIndex < urls.Length; urlIndex++) 
   { 
      ImageViewerItem item = new ImageViewerItem(); 
      item.Url = new Uri(urls[urlIndex]); 
      item.Text = "Item" + itemIndex; 
      item.LoadUrlAsSvg = false; 
      _imageViewer.LoadImageUrlAsSvg = false; 
      this._imageViewer.Items.Add(item); 
      itemIndex++; 
   } 
   Debug.WriteLine(_imageViewer.ImageUrl); 
   _imageViewer.EndTransform(); 
} 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Controls Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.