Search
Visio2013Exporter.Export Method (DiagramDocument, String)
See Also
 





Creates a Visio .vsdx file representing the specified DiagramDocument.

Namespace: MindFusion.Diagramming.Export
Package: MindFusion.Diagramming.Export.Visio

 Syntax

C#  Copy Code

public void Export (
    DiagramDocument doc,
    string filePath
)

Visual Basic  Copy Code

Public Sub Export( _
    doc As DiagramDocument, _
    filePath As String _
)

 Parameters

doc

A DiagramDocument instance.

filePath

The full path to the exported Visio .vsdx file.

 Remarks

Each DiagramPage in the document is exported to an individual Visio page. The title of the Visio page is set to DiagramPage.Title.

 See Also