Feedback

  • Contents
 

User.userChangeHandler Callback Property

Definition

User.userChangeHandler is invoked when any of the agent's configuration attributes changes, except the agent's status. If you pass the name of a user-defined function to User.changeHandler, the function will be called when this event occurs.

Compatibility

This callback is compatible with scripts for Scripter .NET Client or Interaction Connect.

Syntax

User.changeHandler

Usage

Read Yes

Write Yes

Value Assigned

Function Pointer

A function pointer is the address in memory where a user-defined function is loaded. Function pointers pass the address of a user-defined function to another function declared within an application. In a script, the function pointer is simply the name of the function. For example, if your code contains a function named "foo", the function pointer would also be named "foo".

When defining your custom function, no input parameters are needed. E.g. function foo().

Value Returned

Function Pointer