Search
DiagramNode.SetReference Method
See Also
 





Called during deserialization, after all objects have been instantiated, in order to update the references between them.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

protected override void SetReference (
    int refId,
    Object obj,
    PersistContext context
)

Visual Basic  Copy Code

Protected Overrides Sub SetReference( _
    refId As Integer, _
    obj As Object, _
    context As PersistContext _
)

 Parameters

refId
Reference identifier.
obj
The newly loaded object.
context

A PersistContext object providing contextual information about the serialization process and some helper serialization methods.

 Remarks

This method is called for references that had been saved using the SaveReference method.

 See Also