Lua → VBScript SwxWare v13.27
Returns the type of entity a call routing script is running on.
-- check for a user call routing if (PBXScript.Type() == PBXScriptTypeUser) then ... end -- check for a group call routing if (PBXScript.Type() == PBXScriptTypeGroup) then ... end
This property returns a number value.
The following constants are available to check for the different entities:
- PBXScriptTypeUser
-
PBXScriptTypeGroup
Please read also User or Group context for further information on how to figure if a call routing script runs in a user or user group context.
By Tom Wellige