Search
XMLReader.ReadFromString Method
See Also
 



Loads a diagram from string containing XML code.

 Syntax

VB6  Copy Code

Public Sub ReadFromString( _
    ByVal xml As String _
)

C++  Copy Code

public:
void ReadFromString (
    BSTR xml
)

 Parameters

xml
The XML code representing a previously saved diagram.

 Remarks

The specified text should be previously created via XMLWriter.WriteToString.

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