Url Property (original) (raw)

Summary

URL of image data associated with this item.

Syntax

public Uri Url { get; set; } 

public: property System::Uri^ Url { System::Uri^ get() void set(System::Uri^ value) }

Property Value

The URL of the image associated with this item. Default value is null.

Example

using Leadtools; using Leadtools.Controls; using Leadtools.Codecs; using Leadtools.Drawing; using Leadtools.ImageProcessing; using Leadtools.ImageProcessing.Color; using Leadtools.Svg; 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; this._imageViewer.Items.Add(item); itemIndex++; } _imageViewer.EndTransform();