The ordered geometrical set manages a set of hybrid shapes, a set of bodies and a set of ordered geometrical sets.
It belongs to the collection of a or object.
Properties
- Property Bodies() As (Read Only)
-
Returns the ordered geometrical set's Bodies collection.
- Example:
- The following example returns in bodyColl the collection
of bodies of the ordered geometrical set OrderedGeometricalSet1 :
Set bodyColl = OrderedGeometricalSet1.Bodies
- Property HybridShapes() As (Read Only)
-
Returns the list of hybrid shapes included in the ordered geometrical set.
- Returns:
- oHybridShapes The list of hybrid shapes in the ordered geometrical set (@see CATIAHybridShapes
for more information).- Example:
- The following example returns in HybridShapes1 the list of
hybrid shapes in the ordered geometrical setOrderedGeometricalSet1:Dim HybridShapes1 As HybridShapes Set HybridShapes1 = OrderedGeometricalSet1.HybridShapes
- Property OrderedGeometricalSets() As (Read Only)
-
Returns the ordered geometrical set's OrderedGeometricalSets collection.
- Example:
- The following example returns in OrderedGeometricalSetColl the collection
of ordered geometrical set of the ordered geometrical set OrderedGeometricalSet1 :
Set OrderedGeometricalSetColl = OrderedGeometricalSet1.OrderedGeometricalSets
- Property OrderedSketches() As (Read Only)
-
Returns the ordered geometrical set's Sketches collection.
These sketches are those inside the ordered geometrical set at all levels.
- Example:
- The following example returns in sketchesCollection the collection
of sketches of an ordered geometrical set :
Set sketchesCollection = OrderedGeometricalSet1.OrderedSketches
Methods
- Sub InsertHybridShape( iHybridShape)
-
Inserts a hybrid shape to the ordered geometrical set.
- Parameters:
-
- iHybridShape
- The hybrid shape to insert.
- Example:
-
This example inserts the hybrid shape HybridShape1
to the ordered geometrical set OrderedGeometricalSet1:
OrderedGeometricalSet1.InsertHybridShape (HybridShape1)