xtd 0.2.0
Loading...
Searching...
No Matches
up_down_styles.h
Go to the documentation of this file.
1
4#pragma once
6#if !defined(__XTD_FORMS_NATIVE_LIBRARY__)
7#error "Do not include this file: Internal use only"
8#endif
10
11#include <cstddef>
12
13#if !defined(UDS_WRAP)
20constexpr size_t UDS_WRAP = 0x0001;
27constexpr size_t UDS_SETBUDDYINT = 0x0002;
34constexpr size_t UDS_ALIGNRIGHT = 0x0004;
41constexpr size_t UDS_ALIGNLEFT = 0x0008;
48constexpr size_t UDS_AUTOBUDDY = 0x0010;
55constexpr size_t UDS_ARROWKEYS = 0x0020;
62constexpr size_t UDS_HORZ = 0x0040;
69constexpr size_t UDS_NOTHOUSANDS = 0x0080;
76constexpr size_t UDS_HOTTRACK = 0x0100;
77#endif
constexpr size_t UDS_SETBUDDYINT
Causes the up-down control to set the text of the buddy window (using the WM_SETTEXT message) when th...
Definition up_down_styles.h:27
constexpr size_t UDS_AUTOBUDDY
Automatically selects the previous window in the z-order as the up-down control's buddy window.
Definition up_down_styles.h:48
constexpr size_t UDS_ALIGNLEFT
Positions the up-down control next to the left edge of the buddy window. The buddy window is moved to...
Definition up_down_styles.h:41
constexpr size_t UDS_WRAP
Causes the position to "wrap" if it is incremented or decremented beyond the ending or beginning of t...
Definition up_down_styles.h:20
constexpr size_t UDS_NOTHOUSANDS
Does not insert a thousands separator between every three decimal digits.
Definition up_down_styles.h:69
constexpr size_t UDS_HOTTRACK
Causes the control to exhibit "hot tracking" behavior. That is, it highlights the UP ARROW and DOWN A...
Definition up_down_styles.h:76
constexpr size_t UDS_HORZ
Causes the up-down control's arrows to point left and right instead of up and down.
Definition up_down_styles.h:62
constexpr size_t UDS_ALIGNRIGHT
Positions the up-down control next to the right edge of the buddy window. The width of the buddy wind...
Definition up_down_styles.h:34
constexpr size_t UDS_ARROWKEYS
Causes the up-down control to increment and decrement the position when the UP ARROW and DOWN ARROW k...
Definition up_down_styles.h:55