Topsolid online Help Index
Created : v6.6
Variant = IBOMLevel.GetShapes
This method gets the shapes of the BOMLevel.
|
OUT : |
Variant Shapes (array)
|
Array of the shapes (IShape) (0 to UBound) |
With this method you can get the shapes of the BOMLEvel. The return value is an array of IShape.
Dim TopShapes As Variant
Dim TopShape As TopSolid.IShape
Dim ShapeCount As Long
Dim i As Long
TopShapes = TopBomLevel.GetShapes
ShapeCount = UBound (TopShapes, 1)
For i = 0 To ShapeCount
Set TopShape = TopShapes(i)
...
Next i
Topsolid online Help Index