Creates a new item from an SvgDocument object.
public static ImageViewerItem CreateFromSvgDocument(
SvgDocument svgDocument
)
Public Shared Function CreateFromSvgDocument(
ByVal svgDocument As SvgDocument
) As ImageViewerItem
public:
static ImageViewerItem^ CreateFromSvgDocument(
SvgDocument^ svgDocument
)
svgDocument
Source SVG document.
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.
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET