Search
FlowChart.SaveToFile Method
See Also
 



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

 Syntax

VB6  Copy Code

Public Sub SaveToFile( _
    ByVal FileName As String, _
    ByVal ClearDirty As Boolean _
)

C++  Copy Code

public:
void SaveToFile (
    BSTR FileName,
    bool ClearDirty
)

 Parameters

FileName
The name of the file in which to store the document.
ClearDirty
Indicates whether the Dirty flag should be cleared.

 Remarks

Saves a FlowChartX document in a file. The file can be later loaded using the LoadFromFile method.

 See Also