AboutSupportDeveloper GuideVersion 40.128.82.13

Generated at the end of a user-driven change to a window's size or position.

interface EndUserBoundsChangingEvent {
    height: number;
    left: number;
    name: string;
    top: number;
    topic: "window";
    type: "end-user-bounds-changing";
    uuid: string;
    width: number;
    windowState: "maximized" | "minimized" | "normal";
}

Properties

height: number
left: number
name: string
top: number
topic: "window"

The "kebab-case" classname of the emitter that raised the event.

OpenFin.Frame is represented as iframe.

type: "end-user-bounds-changing"

The type of event that was raised. Equal to the typename of the event payload in "kebab case".

Guaranteed to be unique within each topic, but can be repeated between topics (e.g. WebContentsEvents.CrashedEvent and ApplicationEvents.CrashedEvent).

uuid: string
width: number
windowState: "maximized" | "minimized" | "normal"