Indicates whether to load the image URL as SVG.
public virtual bool LoadImageUrlAsSvg { get; set; }
public:
virtual property bool LoadImageUrlAsSvg
{
bool get()
void set(bool value)
}
true to load the image URL as an SVG document, otherwise; false to load it as raster image. Default value is false.
Use LoadImageUrlAsSvg to control how the item loads image data when a new value is set in the URL property. Refer to ImageUrl and ImageViewerItem.Url for more information.
For more information, refer to Image Viewer Items.
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();
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document