@ahmic/autoit-js
    Preparing search index...

    Type Alias WindowState

    The decoded state of a window.

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

    Properties

    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.