Feedback

  • Contents
 

CallObject.isMonitored Property

Definition

This property indicates whether or not a call is being listened to.

Syntax

CallObject.isMonitored

Usage

Read       Yes

Write       No

Value Assigned

None.

Value Returned

Boolean

Returns True if the call is being listened to. Otherwise, returns False.


Example

function Monitored() {
    var CallObject = scripter.callObject;
    if (CallObject.isMonitored) {
        alert("Call has been monitored.");
    }
}