A collection of the Foundation objects contained in a given
Product object of a ProductDocument object.
A Product object aggregates zero or one Foundations collection.
This collection is retrieved using the Product.GetTechnologicalObject method of the product.
Example:
The following example retrieves the Foundation collection from the
oProduct Product.
Dim oFoundations as AnyObject
Set oFoundations = oProduct.GetTechnologicalObject("StructureFoundations")
The following example returns in ThisFoundation the third Foundation,
and in ThatFoundation the Foundation named
Column_1 in the Assembly_1 Foundation collection.
Dim ThisFoundation As Foundation
Set ThisFoundation = Assembly_1.Item(3)
Dim ThatFoundation As Foundation
Set ThatFoundation = Assembly.Item("Column_1")