Search
Diagram.SaveToFile Method (String)
See Also
 





Saves the binary contents of a diagram to the specified file.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public void SaveToFile (
    string fileName
)

Visual Basic  Copy Code

Public Sub SaveToFile( _
    fileName As String _
)

 Parameters

fileName
The full path and name of the disk file where the diagram should be saved.

 Remarks

SaveToFile creates a file stream and invokes the SaveToStream method on it. The file contents can be loaded later using the LoadFromFile method.

 See Also