Interface AddViewEvent

Fired when a new View has been added to the MultiViewPlayer.

interface AddViewEvent {
    date: Date;
    type: "addview";
    view: View;
}

Hierarchy (view full)

  • Event<"addview">
    • AddViewEvent

Properties

Properties

date: Date

The creation date of the event.

type: "addview"

The type of the event.

view: View

The view that has been added.

Generated using TypeDoc