Reads FlowChartX diagrams from XML files.
SyntaxVB6
Copy Code
|
|---|
Public Class XMLReader |
C++
Copy Code
|
|---|
class XMLReader |
RemarksUse an XmlReader instance to load an XML document previously saved via XmlWriter. To load a diagram, create an instance of XmlReader, set its Document property and and call Read or ReadFromString.
Handle the DeserializeTag event to load tag objects, previously encoded via SerializeTag event handler.
ExampleThe following samples loads a diagram from previously saved file:
VB6
Copy Code
|
|---|
Dim r As New XMLReader |
See Also