Search
DxfExporter.Export Method
See Also
 





Creates a DXF file representing the specified NetDiagram diagram.

Namespace: MindFusion.Diagramming.Export
Package: MindFusion.Diagramming.Export.Dxf

 Syntax

C#  Copy Code

public void Export (
    Diagram diagram,
    string filePath
)

Visual Basic  Copy Code

Public Sub Export ( _
    diagram As Diagram, _
    filePath As String _
)

 Parameters

diagram

A reference to the diagram to be exported.

filePath

The full path to the .dxf file.

 Remarks

Each NetDiagram node or link is exported as a group of graphic primitives, such as lines and arcs, defined as DXF entities. DxfExporter uses the entities defined in version 14 of the DXF format.

 See Also