Context Object Parameters
Parameter Name | Type | Read/Write | Comments |
---|
iPartReference | Object Type |
Read | Reference of the cloned part. |
iEEIReference | Object Type | Read | Reference of the Manufactured Part. |
oEEIName | String | Write | Name of the clone. |
Sample
The following sample shows how to retrieve the name of the cloned part used for Manufactured Part resulting product.
/* INPUTS */
Let PartReference(VPMReference) /* the reference of design part */
Let EEIReference(VPMReference) /* the reference of Manufactured Part */
/* OUPUTS */
Let CloneName(String) /* clone name */
PartReference = Parameters.GetAttributeObject ("iPartReference")
EEIReference= Parameters.GetAttributeObject ("iEEIReference")
CloneName= PartReference. V_Name + EEIReference. V_Name
Parameters.SetAttributeString ("oEEIName",CloneName)