Feature->Query(iType: String, iCondition : String) : List | Returns a list of objects located under the feature it is called on. The objects must match the type and condition given in input. | To retrieve all holes under a PartBody with a diameter superior to 10mm: PartBody->Query("Hole","x.Diameter>10mm")
|
Feature->Find(iType: String, iCondition : String) : Feature | Same as Query , but only returns the first object matching the type and condition. | - |
Feature->Access(iType: String, iPath : String) : Feature | Allows to retrieve an element using a Path. Paths are Strings which can be created using the CreatePathString method. | - |