Skip to content

CreateModelRef ​

This event is triggered after a model (thread) has been added to a model group,
i.e. a model reference from a model group to a model thread has been created.

Parameters ​

ParameterDescription
mgroupidintValue, ID of the model group.
threadidintValue, ID of the model thread.
modelrefidintValue, ID of the reference going from the model group to the model thread.

Exit value: ​

Remarks ​

See Also ​

Example ​

The following example displays an INFOBOX with information about the created model.

leo-grammar
	ON_EVENT "CreateModelRef" {
  
	SETG id_MGroupId: (mgroupid)
	SETG id_ThreadId: (threadid)
	SETG id_MRefId: (modelrefid)
	CC "AdoScript" INFOBOX ("ModelGroupId:   " + STR(id_MGroupId)  + 
	"  ThreadId:  " + STR(id_ThreadId) + 
	"  ModelReferenceId:   " + (id_MRefId))
	}
	ON_EVENT "CreateModelRef" {
  
	SETG id_MGroupId: (mgroupid)
	SETG id_ThreadId: (threadid)
	SETG id_MRefId: (modelrefid)
	CC "AdoScript" INFOBOX ("ModelGroupId:   " + STR(id_MGroupId)  + 
	"  ThreadId:  " + STR(id_ThreadId) + 
	"  ModelReferenceId:   " + (id_MRefId))
	}