CreateApplicationModel ​
This event is triggered after an Applicaiton model was created.
Parameters ​
Parameter | Description |
---|---|
appmodelid (appmodid) | intValue, contains the ID of the created application model. |
appmodelname (appmodname) | intValue, contains the name of the created application model. |
onthread | intValue, contains a bool flag (0 or 1) whether the application model was defined on threads or on versions. |
Exit value: ​
Remarks ​
See Also ​
Example ​
The following example welcomes the user after creating an application model.
leo-grammar
ON_EVENT "CreateApplicationModel" {
SETG id_AppModelId: (appmodelid)
SETG str_AppModelName: (appmodelname)
SETG id_OnThread: (onthread)
CC "AdoScript" INFOBOX "HELLO"
}