Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.4.3
|
Leadtools.Controls Assembly > Leadtools.Controls Namespace > ImageViewerItems Class : InsertFromSvgDocument Method |
public ImageViewerItem InsertFromSvgDocument( int index, SvgDocument document )
'Declaration
Public Function InsertFromSvgDocument( _ ByVal index As Integer, _ ByVal document As SvgDocument _ ) As ImageViewerItem
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.