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 > ImageViewerItem Class : CreateFromSvgDocument Method |
public static ImageViewerItem CreateFromSvgDocument( SvgDocument svgDocument )
'Declaration
Public Shared Function CreateFromSvgDocument( _ ByVal svgDocument As SvgDocument _ ) As ImageViewerItem
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.