SpaceAnalysisInterfaces Sections (Collection)
All Frameworks Object Hierarchy This Framework Indexes
Sections (Collection)
A collection of all Section objects currently managed by the application.
The method GetTechnologicalObject("Sections") on the root product, allows you to retrieve this collection.
Method Index
-
AddFromSel
- Creates a Section object which takes all products in the selection into account
and adds it to the Sections collection.
-
Add
- Creates a Section object which takes all products of the documents into account
and adds it to the Sections collection.
-
Item
- Returns a Section object using its index or its name from the Sections collection.
-
Remove
- Removes a Section object from the Sections collection.
Methods
-
Creates a Section object which takes all products in the selection into account
and adds it to the Sections collection.
- Returns:
- The created Section
- Example:
- This example creates a new Section in the TheSections collection.
Dim NewSection As Section
Set NewSection = TheSections.AddFromSel
-
Creates a Section object which takes all products of the documents into account
and adds it to the Sections collection.
- Returns:
- The created Section
- Example:
- This example creates a new Section in the TheSections collection.
Dim NewSection As Section
Set NewSection = TheSections.Add
-
Returns a Section object using its index or its name from the Sections collection.
- Parameters:
-
- iIndex
- The index or the name of the Section to retrieve from the collection of Sections.
As a numerics, this index is the rank of the Section in the collection.
The index of the first Section in the collection is 1, and
the index of the last Section is Count.
As a string, it is the name you assigned to the Section.
- Example:
- This example retrieves in ThisSection the ninth Section,
and in ThatSection the Section named
Section Of MyProduct from the TheSections collection.
Dim ThisSection As Section
Set ThisSection = TheSections.Item(9)
Dim ThatSection As Section
Set ThatSection = TheSections.Item("Section Of MyProduct")
-
Removes a Section object from the Sections collection.
- Parameters:
-
- iIndex
- The index or the name of the Section to remove from the collection of Sections.
As a numerics, this index is the rank of the Section in the collection.
The index of the first Section in the collection is 1, and
the index of the last Section is Count.
As a string, it is the name you assigned to the Section.
- Example:
- The following example removes the tenth Section and the Section named
Section Of MyProduct from the TheSections collection.
TheSections.Remove(10)
TheSections.Remove("Section Of MyProduct")
Copyright © 2003, Dassault Systèmes. All rights reserved.