Feedback

  • Contents
 

ChatObject.ObjectDestroyedHandler Callback Property

Definition

ChatObject.objectDestroyedHandler is invoked when the chat object is no longer valid. You will not be able to access anything about the object after this function is called on the object. If you pass the name of a user-defined function to ConferenceObject.callobjectDestroyedHandler, the function will be called when this event occurs.

Compatibility

This functionality is only available with scripts for Interaction Connect. It is not available in Scripter .Net client.

Syntax

ChatObject.ObjectDestroyedHandler();

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 special arguments are required. e.g.: function foo().