Search
XMLReader Class
Remarks See Also
 



Reads FlowChartX diagrams from XML files.

 Syntax

VB6  Copy Code

Public Class XMLReader

C++  Copy Code

class XMLReader

 Remarks

Use 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.

 Example

The following samples loads a diagram from previously saved file:

VB6  Copy Code

Dim r As New XMLReader
r.Document = FlowChart1
r.Read fileName

 See Also