SpecialWindowHandles Enumeration

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Fields
 
Name Value Description
HWND_BOTTOM 1
HWND_NOTOPMOST -2
HWND_TOP 0
HWND_TOPMOST -1
[Flags]
 public enum SpecialWindowHandles
 {
     HWND_TOP = 0,
     HWND_BOTTOM = 1,
     HWND_TOPMOST = -1,
     HWND_NOTOPMOST = -2
 }
					
This language is not supported or no code example is available.

In this article

Definition