OnAppPopoutEvent: { timestamp: number; action: "dock" | "undock"; height: number; width: number; orientation: "landscape" | "portrait" }

Usage:

zoomSdk.onAppPopout((event) => {
console.log(event)
});

Console log:

{
"timestamp": 1614831950,
"action": "dock",
"height": 100,
"width": 200,
"orientation": "landscape"
}

Type declaration

  • timestamp: number

    Timestamp at which popout/pop-in button is clicked

  • action: "dock" | "undock"

    dock (pop-in) or undock (popout)

  • height: number

    Height of the popout window in px

  • width: number

    Width of the popout window in px

  • orientation: "landscape" | "portrait"

    landscape or portrait

Generated using TypeDoc