12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
- public const int SB_HORZ = 0;
-
-
-
- public const int SB_VERT = 1;
-
-
-
- public const int SB_CTL = 2;
-
-
-
- public const int SB_BOTH = 3;
-
-
-
- public const int SB_LINEUP = 0;
-
-
-
- public const int SB_LINELEFT = 0;
-
-
-
- public const int SB_LINEDOWN = 1;
-
-
-
- public const int SB_LINERIGHT = 1;
-
-
-
- public const int SB_PAGEUP = 2;
-
-
-
- public const int SB_PAGELEFT = 2;
-
-
-
- public const int SB_PAGEDOWN = 3;
-
-
-
- public const int SB_PAGERIGHT = 3;
-
-
-
- public const int SB_THUMBPOSITION = 4;
-
-
-
- public const int SB_THUMBTRACK = 5;
-
-
-
- public const int SB_TOP = 6;
-
-
-
- public const int SB_LEFT = 6;
-
-
-
- public const int SB_BOTTOM = 7;
-
-
-
- public const int SB_RIGHT = 7;
-
-
-
- public const int SB_ENDSCROLL = 8;
- }
- }
|