GetShapes method


Your Ad Here


Topsolid online Help Index

Created : v6.6

 

Variant = IBOMLevel.GetShapes

Description

This method gets the shapes of the BOMLevel.

Parameters

 

OUT :

Variant Shapes (array)

 

Array of the shapes (IShape) (0 to UBound)

Remarks

With this method you can get the shapes of the BOMLEvel. The return value is an array of IShape.

Examples

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

Your Ad Here