Search
FlowChart.DeserializeTag Event
See Also
 



Raised when a tag needs to be deserialized during loading.

 Syntax

VB6  Copy Code

Public Event DeserializeTag

 Event Data

Parameter

Type

Description

item

[input] reference to a diagram element

The item whose VariantTag is being deserialized.

representation

[input] string

The tag's string representation created by SerializeTag event handler.

Dispatch ID: 83

 Remarks

While loading an XML document, this event is raised for each item that has an associated VariantTag. The item argument refers to a Box, Table or Arrow instance whose tag is being deserialized. You must create a tag object by decoding its string representation and assign that to item's VariantTag.

 See Also