SW (Constants)
Last changed: jnm2-74.212.46.188

.
Summary
Specify how ShowWindow and ShowWindowAsync show or hide a window

C# Constants:

  const int        SW_HIDE         = 0;
  const int        SW_SHOWNORMAL     = 1;
  const int        SW_NORMAL        = 1;
  const int        SW_SHOWMINIMIZED    = 2;
  const int        SW_SHOWMAXIMIZED    = 3;
  const int        SW_MAXIMIZE    = 3;
  const int        SW_SHOWNOACTIVATE    = 4;
  const int        SW_SHOW        = 5;
  const int        SW_MINIMIZE    = 6;
  const int        SW_SHOWMINNOACTIVE    = 7;
  const int        SW_SHOWNA        = 8;
  const int        SW_RESTORE    = 9;
  const int        SW_SHOWDEFAULT    = 10;
  const int        SW_FORCEMINIMIZE    = 11;
  const int        SW_MAX        = 11;

VB Constants:

TODO

Notes:

None.