From Bright Pattern Documentation
< 5.19:AgentDesktop-client-side-javascript-api-specification
Revision as of 04:01, 29 May 2024 by BpDeeplTranslateMaintenance (talk | contribs) (Updated via BpDeleteTranslateTags script)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
• 5.19


getScreenRecordingState

Returns the current state of the screen recording.

Request

Syntax

getScreenRecordingState(): Promise<OperationResult<ScreenRecordingState>>

Where:

type ScreenRecordingState = {

    allowed: boolean

    active: boolean

    muted: boolean

}

Parameters

(None)

Example Request

    getScreenRecordingStateButton.onclick = () => {

        adApi.getScreenRecordingState()

    }

Return Value

Object Object Values Data Type Optional?

(Y/N)

Value Description
ScreenRecordingState
allowed Boolean N Returns true if the screen recording is allowed for the current user; returns false if not allowed
active Boolean N Returns true if the screen recording is active now; returns false if not active now
muted Boolean N Returns true if the screen recording is currently muted; returns false if the recording is not currently muted
< Previous | Next >