Interface RemoveViewEvent

Fired when a View has been removed from the MultiViewPlayer.

interface RemoveViewEvent {
    date: Date;
    type: "removeview";
    view: View;
}

Hierarchy (view full)

  • Event<"removeview">
    • RemoveViewEvent

Properties

Properties

date: Date

The creation date of the event.

type: "removeview"

The type of the event.

view: View

The view that has been removed.