Search
VisioImporter Class
Remarks See Also
 

Imports Visio 2013 XML Drawing files (*.vsdx) into Diagram or DiagramDocument objects.

Namespace: com.mindfusion.diagramming.importers
Package: com.mindfusion.diagramming.importers

 Syntax

Java  Copy Code

public class VisioImporter

 Remarks

The VisioImporter class can import .vsdx files created by Visio 2013. In order to use it, you must import the com.mindfusion.diagramming.importers namespace.

Various overloads of the import method can be used to import the file into a DiagramDocument whose pages correspond to the Visio drawing pages, or into a single Diagram whose content is merged from all imported pages.

VisioImporter supports the basic flowchart and data flow Visio stencils. For each node shape from the .vsdx file, the importer creates a ShapeNode object whose Shape, Text, Brush and Pen properties are set to values corresponding to the imported Visio shape. For each connector shape, the importer creates a DiagramLink object whose Origin and Destination are set to the corresponding imported nodes, and whose ControlPoints reflect the geometry of the connector.

 Inheritance Hierarchy

java.lang.Object
    com.mindfusion.diagramming.importers.VisioImporter

 See Also