-
Retrieve all the Manufacturing Assemblies of a given name.
- Parameters:
-
- iNameBSTR
- Name of the manufacturing assembly
- oMfgAssemblies
- Array of the Items of the type MfgAssembly of Items. Please not the client has to set the appropriate size of this Array
If the size is underestimated, that much size array will be returned.
- oNumOfMfgAssemblies
- Number of MAs found with the given name. If the actual number of MA found with this name is greater than the size
of the array passed, then value will be equal to the size of the array itself.
- Example:
-
For example retriving all the MAs with the name "MA_TYPE1" from the MA Applicative Container
Dim nbMfgAssemblies
Set nbMfgAssemblies = objMAfact.GetNumberOfMfgAssemblies
Dim MAList() As AnyObject
ReDim MAList(nbMfgAssemblies-1)
Dim NbMA
objMA.RetrieveMfgAssembly "MA_TYPE1",MAList,NbMA
MsgBox NbMA
Copyright © 2003, Dassault Systèmes. All rights reserved.