Search
Diagram.LoadFromXml Method (XmlDocument, Boolean)
See Also
 





Loads the diagram from an XML document.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public virtual void LoadFromXml (
    XmlDocument document,
    bool loadDiagramProperties
)

Visual Basic  Copy Code

Public Overridable Sub LoadFromXml( _
    document As XmlDocument, _
    loadDiagramProperties As Boolean _
)

 Parameters

document
A .NET XmlDocument object from which to load the diagram data.
loadDiagramProperties
true to load values of the diagram properties; false to load only the diagram items.

 Remarks

The method reads a diagram previously saved via the SaveToXml method.

 See Also