Type Alias WindowState

WindowState: {
    exists: boolean;
    visible: boolean;
    enabled: boolean;
    active: boolean;
    minimized: boolean;
    maximized: boolean;
}

The decoded state of a window.

Type declaration

  • exists: boolean

    Indicates if the window exists.

  • visible: boolean

    Indicates if the window is visible.

  • enabled: boolean

    Indicates if the window is enabled.

  • active: boolean

    Indicates if the window is active.

  • minimized: boolean

    Indicates if the window is minimized.

  • maximized: boolean

    Indicates if the window is maximized.