Error processing SSI file
(Leadtools.Controls)

Show in webframe

CreateFromSvgDocument Method




Source SVG document.
Creates a new item from an SvgDocument object.
Syntax
public static ImageViewerItem CreateFromSvgDocument( 
   SvgDocument svgDocument
)
'Declaration
 
Public Shared Function CreateFromSvgDocument( _
   ByVal svgDocument As SvgDocument _
) As ImageViewerItem

Parameters

svgDocument
Source SVG document.
Remarks

Use CreateFromImage to create an item from a raster image.

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


            ImageViewerItem item = new ImageViewerItem();
            item.SvgDocument = document;
            

The item is not added to an image viewer using this method. You should use Items the collection to add or insert the item before it can be displayed.

Requirements

Target Platforms

See Also

Reference

ImageViewerItem Class
ImageViewerItem Members

Error processing SSI file