←Select platform

InsertFromSvgDocument Method

Summary

Inserts a new item from an SvgDocument object.

Syntax

C#
VB
C++
public ImageViewerItem InsertFromSvgDocument( 
   int index, 
   SvgDocument document 
) 
Public Function InsertFromSvgDocument( 
   ByVal index As Integer, 
   ByVal document As SvgDocument 
) As ImageViewerItem 
public:  
   ImageViewerItem^ InsertFromSvgDocument( 
      int index, 
      SvgDocument^ document 
   ) 

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

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Controls.WinForms Assembly