Search
FlowChart.Decorations Property
See Also
 



Gets a collection of all decorations in the diagram.

 Syntax

VB6  Copy Code

Public Property Get Decorations() As IDecorations

C++  Copy Code

public:
IDecorations* get_Decorations ()

 Property Value

A collection of DecorationLine objects.

 Remarks

A collection of all the decorations in current FlowChartX document. You can iterate over them using Count and Item properties or you can get standard enumerator object (IEnumVariant) using _NewEnum. Visual Basic gives access to this enumerator with the 'for each' statement.

 See Also