Feedback

  • Contents
 

CallObject.isPrivate Property

Definition

This property indicates whether the call is in a private state, meaning that no one can listen in on (monitor) the call.

Syntax

CallObject.isPrivate

Usage

Read       Yes

Write       No

Value Assigned

None.

Value Returned

Boolean

The property returns True if the call is in a private state; otherwise, returns False.


Example

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