DNBFastenerNewMfgPosServices (Object)



Methods


Sub GetFlaggedFasteners( oFastenerArray)
Gets List of flagged DELMIAFasteners. *
Example:
Set myObject = CATIA.GetItem("DNBFastenerNewMfgPosServices") myObject.GetFlaggedFasteners ArrayFastener
Func GetNumberOfFlaggedFasteners() As
Gets number of flagged DELMIAFasteners. *
Example:
Set myObject = CATIA.GetItem("DNBFastenerNewMfgPosServices") NbFastener = myObject.GetNumberOfFlaggedFasteners
Sub SetFlag( iFastener)
flags a specified DELMIAFastener to create a new manufacturing fastener in its place. *
Example:
Set myObject = CATIA.GetItem("DNBFastenerNewMfgPosServices") myObject.SetFlag MyFastener always returns S_OK even the function is not successful. For example the fastener is already flagged.
Sub SetFlagOnFasteners( iFastenerArray)
flags a list of DELMIAFasteners to create new manufacturing fasteners in their place. *
Example:
Set myObject = CATIA.GetItem("DNBFastenerNewMfgPosServices") myObject.SetFlagOnFasteners ArrayFastener always returns S_OK even the function is not successful. For example the fasteners are already flagged.
Sub UnsetFlag( iFastener)
unflags a flagged DELMIAFastener to create a new manufacturing fastener in its place. *
Example:
Set myObject = CATIA.GetItem("DNBFastenerNewMfgPosServices") myObject.UnsetFlag MyFastener always returns S_OK even the function is not successful. For example the fastener is not flagged.
Sub UnsetFlagOnFasteners( iFastenerArray)
unflags a list of DELMIAFasteners to create new manufacturing fasteners in their place. *
Example:
Set myObject = CATIA.GetItem("DNBFastenerNewMfgPosServices") myObject.UnsetFlagOnFasteners ArrayFastener always returns S_OK even the function is not successful. For example the fasteners are not flagged.