General InformationThis opening ID is invoked when a symbol representation of a component is placed in a diagram view.
Input ObjectsInput objects must be of the following types:
Context Object Parameters
SampleIn the following example, the SchematicCallback_SymbolOrRouteModified opening ID is set to retrieve the name of the symbol representation and add it as a Description attribute.
let sName(string) set sName = Parameters.GetAttributeString("Representation_Name") let LogInst(RFLVPMLogicalInstance) set LogInst = ThisObject.Instance if(NULL<>LogInst) { LogInst.V_description = sName.Extract(0, sName.Search(".")) } Notify(" SetSymbolName = #", sName ) Notify("----------------------------------------------------------------------------") |