Feedback

  • Contents
 

CallObject.private Method

Definition

Call this method to make a call private so it cannot be listened to or recorded by another CIC user. This method toggles privacy mode on or off. Call the method a second time to toggle privacy mode off.

Syntax

CallObject.private();

Prototype

CallObject.private()

Input Parameters

None.

Return Values

None.


Example

function Private() {
    var CallObject = scripter.callObject;
    CallObject.private();
    If(CallObject.isPrivate) {
        alert("Call is now Private");
    }
}