Gets a collection of all boxes in the diagram.
SyntaxVB6
Copy Code
|
|---|
Public Property Get Boxes() As IBoxes |
C++
Copy Code
|
|---|
public: |
A collection of Box objects.
RemarksA collection of all the boxes 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