vot.js - v2.4.18
    Preparing search index...

    Interface PictureInPictureWindow

    The PictureInPictureWindow interface represents an object able to programmatically obtain the width and height and resize event of the floating video window.

    MDN Reference

    interface PictureInPictureWindow {
        height: number;
        onresize: ((this: PictureInPictureWindow, ev: Event) => any) | null;
        width: number;
        addEventListener<K extends "resize">(
            type: K,
            listener: (
                this: PictureInPictureWindow,
                ev: PictureInPictureWindowEventMap[K],
            ) => any,
            options?: boolean | AddEventListenerOptions,
        ): void;
        addEventListener(
            type: string,
            listener: EventListenerOrEventListenerObject,
            options?: boolean | AddEventListenerOptions,
        ): void;
        dispatchEvent(event: Event): boolean;
        dispatchEvent(event: Event): boolean;
        removeEventListener<K extends "resize">(
            type: K,
            listener: (
                this: PictureInPictureWindow,
                ev: PictureInPictureWindowEventMap[K],
            ) => any,
            options?: boolean | EventListenerOptions,
        ): void;
        removeEventListener(
            type: string,
            listener: EventListenerOrEventListenerObject,
            options?: boolean | EventListenerOptions,
        ): void;
    }

    Hierarchy

    • EventTarget
      • PictureInPictureWindow
    Index
    height: number

    The read-only height property of the PictureInPictureWindow interface returns the height of the floating video window in pixels.

    MDN Reference

    onresize: ((this: PictureInPictureWindow, ev: Event) => any) | null
    width: number

    The read-only width property of the PictureInPictureWindow interface returns the width of the floating video window in pixels.

    MDN Reference

    • The addEventListener() method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target.

      MDN Reference

      Type Parameters

      • K extends "resize"

      Parameters

      Returns void

    • The addEventListener() method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target.

      MDN Reference

      Parameters

      Returns void

    • The dispatchEvent() method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order.

      MDN Reference

      Parameters

      • event: Event

      Returns boolean

    • Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.

      Parameters

      • event: Event

      Returns boolean