General InformationThis opening ID is invoked every time a symbol is placed inside a geographical container. This opening ID is used to add an attribute on the symbol to identify it as part of a geographic container.
Input ObjectsInput objects must be of the following types:
Context Object Parameters
SampleThe following sample define the V_Description attribute of the containee according to the value of the attribute for the parent geographical container.
Let FatherInstance(RFLVPMLogicalInstance)
Let ChildInstance(RFLVPMLogicalInstance)
Let FatherName(String)
Let FatherOccurence(LogicalOccurrence)
Set ChildInstance = ThisObject.Instance
Set FatherOccurence = Parameters->GetAttributeObject("Father")
Set FatherInstance = FatherOccurence.Instance
if(NULL <> ChildInstance and NULL <> FatherInstance)
{
ChildInstance.SetAttributeString("V_description", FatherInstance.Name)
}
| |||||||||||||||||||||||||||