Error processing SSI file
LEADTOOLS JavaScript (Leadtools.Controls)

InsertFromElement Method

Show in webframe
0-based index of the item.
Source HTML Element or SVG Element.
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 an HTML Element or SVG Element.
Syntax
 function Leadtools.Controls.ImageViewerItems.insertFromElement( 
   index ,
   element ,
   resolution 
)

Parameters

ParameterTypeDescription
indexint0-based index of the item.
elementElementSource HTML Element or SVG Element.
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 allows you to quickly insert an item from an HTML Element or svg. It is the equivalant of the following code:


            var item = new lt.Controls.ImageViewerItem();
            item.element = element;
            item.resolution = resolution; // Optional
            imageViewer.items.insert(index, item);
            

Element may still be null even if a non-null element is passed; InsertFromElement can be used as a shortcut for InsertFromCanvas or InsertFromImage. Passing a valid HTML5 Canvas Element to InsertFromElement will create an ImageViewerItem with the Canvas property set, just as it does with InsertFromCanvas. Similarly, passing a valid HTML Image Element to InsertFromElement will create an ImageViewerItem with the Image property set, just as it does with InsertFromImage. The item can have a value in only one of Image, Element or Canvas. Setting one value will automatically delete the values of the others.

To add the ImageViewerItem to the end of the collection, see AddFromElement. To create an item without adding it to any ImageViewer, refer to CreateFromElement.

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

Example
Refer to Element for an example.
See Also

Reference

ImageViewerItems Object
ImageViewerItems Members

Error processing SSI file