Search
FlowChart.LoadFromString Method
See Also
 



Decodes diagram contents from a string that was created with SaveToString.

 Syntax

VB6  Copy Code

Public Sub LoadFromString( _
    ByVal str As String _
)

C++  Copy Code

public:
void LoadFromString (
    BSTR str
)

 Parameters

str
A string to which a document was previously saved.

 Remarks

Loads a flowchart document from a string. The string should be created using SaveToString method.

 See Also