PowerKeys Scripting API
    Preparing search index...

    Interface WindowControlInspection

    Classic Win32 control details captured while inspecting a window.

    interface WindowControlInspection {
        className: string;
        classIndex: number | null;
        text: string;
        bounds: WindowBounds;
        clientBounds: WindowBounds | null;
    }
    Index
    className: string

    Native Win32 control class name.

    classIndex: number | null

    One-based occurrence of className within the target window, or null when it cannot be resolved.

    text: string

    Control text. Controls detected as password-style before or after retrieval are returned as an empty string.

    bounds: WindowBounds

    Outer control rectangle in physical virtual-screen coordinates.

    clientBounds: WindowBounds | null

    Control client-area rectangle in physical virtual-screen coordinates, or null if Windows cannot resolve it.