Removing attributes from Containee (Schematic_RemoveContainer)

An opening ID is an entry point used to customize business logic. The Schematic_RemoveContainer opening ID lets you remove attributes from a containee symbol.

Note: For more information about customization by business rules, see Installation and Setup: Customize: Behavior: Data Setup: Customization by Business Rules.

This page discusses:

General Information

This opening ID is invoked when a containee component is removed from a container in a diagram view.

Definition Description
PLM Opening ID Schematic_RemoveContainer
Customization intent Execution
Execution context Client

Input Objects

Input objects must be of the following types:

  • ThisObject: Logical Occurence
  • Parameters corresponds to the context object.

Context Object Parameters

Parameter Name Type Read or Write Comments
ThisObject (input) LogicalOccurrence Read Name of the containee.

Sample

The following sample

Let ChildInstance(RFLVPMLogicalInstance)
Set ChildInstance = ThisObject.Instance

if(NULL <> ChildInstance)
{
                ChildInstance.SetAttributeString("V_description", "")
}