Search
XMLReader.Read Method
See Also
 



Loads a diagram from the XML document whose path is specified as argument.

 Syntax

VB6  Copy Code

Public Sub Read( _
    ByVal FileName As String _
)

C++  Copy Code

public:
void Read (
    BSTR FileName
)

 Parameters

FileName

The name of a file from which to load a diagram.

 Remarks

That document should be previously saved via XMLWriter.Write.

If there are VariantTag objects associated with diagram elements, FlowChartX won't deserialize them automatically. You must provide a handler for the DeserializeTag event and decode the tags from their string representation.

 See Also