Error processing SSI file
(Leadtools.Controls)

Show in webframe

InsertFromSvgDocument Method




0-based index of the item.
Source SVG document.
Inserts a new item from an SvgDocument object.
Syntax
public ImageViewerItem InsertFromSvgDocument( 
   int index,
   SvgDocument document
)
'Declaration
 
Public Function InsertFromSvgDocument( _
   ByVal index As Integer, _
   ByVal document As SvgDocument _
) As ImageViewerItem

Parameters

index
0-based index of the item.
document
Source SVG document.

Return Value

The newly created item if successful.
Remarks

Use InsertFromImage to insert an item from a RasterImage object.

This method allows you to quickly insert an item from an SvgDocument. It is the equivalent of the following code:


            ImageViewerItem item = new ImageViewerItem();
            item.SvgDocument = document;
            imageViewer.Items.Insert(index, document);
            

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

The value of AutoRenderOptimizeSvgDocuments will determine if the viewer should optimize the SVG document for rendering.

Requirements

Target Platforms

See Also

Reference

ImageViewerItems Class
ImageViewerItems Members

Error processing SSI file