GetWindowState()

Syntax

State = GetWindowState(#Window)
Description
Checks whether the specified window is maximized, minimized or displayed normally.

Parameters

#Window The window to use.

Return value

It can be one of the following values:
  #PB_Window_Normal  : The window is neither maximized nor minimized.
  #PB_Window_Maximize: The window is maximized.
  #PB_Window_Minimize: The window is minimized.

Remarks

The status of a window can be changed with the SetWindowState() function.

See Also

SetWindowState()

Supported OS

All

<- GetWindowData() - Window Index - GetWindowTitle() ->