General InformationThis opening ID is invoked each time the physical object is synchronized with the logical object.
Input ObjectsInput objects must be of the following types:
Sample
let facet2dOcc(LogicalOccurrence) let facet3DOcc(ProductOccurrence) let facet2DRef(RFLVPMLogicalReference) let facet3DRef(VPMReference) let facet2DInst(RFLVPMLogicalInstance) let facet3DInst(VPMInstance) let str2d(String) let str3d(String) set facet2dOcc = ThisObject.Facet2D set facet3DOcc = ThisObject.Facet3D if ( facet3DOcc <> NULL and facet2dOcc <> NULL ) { set facet3DInst = facet3DOcc.Instance set facet2DInst = facet2dOcc.Instance } if ( facet2DInst <> NULL and facet3DInst <> NULL ) { str2d = "SetbySample" str3d = "SetbySample" facet3DInst.SetAttributeString("V_description", str2d) facet2DInst.SetAttributeString("V_description", str3d) } |