Error processing SSI file
LEADTOOLS JavaScript (Leadtools.Controls)

InsertFromSvgUrl Method

Show in webframe
0-based index of the item.
URL pointing to an SVG or XML/XHTML document structure.
The resolution to use for the image in dots/inch (DPI). A value of 0,0 or Empty means to use the default image resolution of 96 pixels.
Inserts a new item from a URL pointing to an SVG or XML/XHTML document structure.
Syntax
 function Leadtools.Controls.ImageViewerItems.insertFromSvgUrl( 
   index ,
   url ,
   resolution 
)

Parameters

ParameterTypeDescription
indexint0-based index of the item.
urlstringURL pointing to an SVG or XML/XHTML document structure.
resolutionLeadSizeDThe resolution to use for the image in dots/inch (DPI). A value of 0,0 or Empty means to use the default image resolution of 96 pixels.

Return Value

TypeDescription
ImageViewerItem The newly created item, if successful
Remarks

This method will load the data from url and add a new ImageViewerItem. This is done through the use of ImageLoader, meaning a ImageLoading event will be fired when the image loading is about to begin. When loading from AddFromSvgUrl or InsertFromSvgUrl, the image will load with AjaxXml, which only works for SVG Elements or XML/XHTML Elements. To intercept and change this loading style, attach a callback to the ImageLoading event. The HTML Image Element will be set to the Element property when finished. The image data is loaded in the background and ImageSize is updated as described in Url.

This method is a shortcut for the following:


              var item = new lt.Controls.ImageViewerItem();
              item.loadUrlMode = lt.ImageLoaderUrlMode.ajaxXml;
              item.Url = url;
              imageViewer.items.insert(index, item);
            

If url is null, then an empty item is added.

See Also

Reference

ImageViewerItems Object
ImageViewerItems Members

Error processing SSI file