scroll bar styles definitions.
Variables | |
constexpr size_t | SBS_HORZ |
Designates a horizontal scroll bar. If neither the SBS_BOTTOMALIGN nor SBS_TOPALIGN style is specified, the scroll bar has the height, width, and position specified by the x, y, nWidth, and nHeight parameters of CreateWindowEx. | |
constexpr size_t | SBS_VERT |
Designates a vertical scroll bar. If you specify neither the SBS_RIGHTALIGN nor the SBS_LEFTALIGN style, the scroll bar has the height, width, and position specified by the x, y, nWidth, and nHeight parameters of CreateWindowEx. | |
constexpr size_t | SBS_TOPALIGN |
Aligns the top edge of the scroll bar with the top edge of the rectangle defined by the x, y, nWidth, and nHeight parameters of CreateWindowEx. The scroll bar has the default height for system scroll bars. Use this style with the SBS_HORZ style. | |
constexpr size_t | SBS_LEFTALIGN |
Aligns the left edge of the scroll bar with the left edge of the rectangle defined by the x, y, nWidth, and nHeight parameters of CreateWindowEx. The scroll bar has the default width for system scroll bars. Use this style with the SBS_VERT style. | |
constexpr size_t | SBS_BOTTOMALIGN |
Aligns the bottom edge of the scroll bar with the bottom edge of the rectangle defined by the x, y, nWidth, and nHeight parameters of CreateWindowEx function. The scroll bar has the default height for system scroll bars. Use this style with the SBS_HORZ style. | |
constexpr size_t | SBS_RIGHTALIGN |
Aligns the right edge of the scroll bar with the right edge of the rectangle defined by the x, y, nWidth, and nHeight parameters of CreateWindowEx. The scroll bar has the default width for system scroll bars. Use this style with the SBS_VERT style. | |
constexpr size_t | SBS_SIZEBOXTOPLEFTALIGN |
SAligns the upper left corner of the size box with the upper left corner of the rectangle specified by the x, y, nWidth, and nHeight parameters of CreateWindowEx. The size box has the default size for system size boxes. Use this style with the SBS_SIZEBOX or SBS_SIZEGRIP styles. | |
constexpr size_t | SBS_SIZEBOXBOTTOMRIGHTALIGN |
Aligns the lower right corner of the size box with the lower right corner of the rectangle specified by the x, y, nWidth, and nHeight parameters of CreateWindowEx. The size box has the default size for system size boxes. Use this style with the SBS_SIZEBOX or SBS_SIZEGRIP styles. | |
constexpr size_t | SBS_SIZEBOX |
Designates a size box. If you specify neither the SBS_SIZEBOXBOTTOMRIGHTALIGN nor the SBS_SIZEBOXTOPLEFTALIGN style, the size box has the height, width, and position specified by the x, y, nWidth, and nHeight parameters of CreateWindowEx. | |
constexpr size_t | SBS_SIZEGRIP |
Same as SBS_SIZEBOX, but with a raised edge. | |
constexpr size_t | SB_HORZ |
Shows or hides a window's standard horizontal scroll bars. | |
constexpr size_t | SB_VERT |
Shows or hides a window's standard vertical scroll bar. | |
constexpr size_t | SB_CTL |
Shows or hides a scroll bar control. The hwnd parameter must be the handle to the scroll bar control. | |
constexpr size_t | SB_BOTH |
Shows or hides a window's standard horizontal and vertical scroll bars. | |
constexpr size_t | SB_LINEUP |
Scrolls one line up. | |
constexpr size_t | SB_LINELEFT |
Scrolls one line left. | |
constexpr size_t | SB_LINEDOWN |
Scrolls one line down. | |
constexpr size_t | SB_LINERIGHT |
Scrolls one line right. | |
constexpr size_t | SB_PAGEUP |
Scrolls one page up. | |
constexpr size_t | SB_PAGELEFT |
Scrolls one page left. | |
constexpr size_t | SB_PAGEDOWN |
Scrolls one page down. | |
constexpr size_t | SB_PAGERIGHT |
Scrolls one page right. | |
constexpr size_t | SB_THUMBPOSITION |
The user has dragged the scroll box (thumb) and released the mouse button. The HIWORD indicates the position of the scroll box at the end of the drag operation. | |
constexpr size_t | SB_THUMBTRACK |
The user is dragging the scroll box. This message is sent repeatedly until the user releases the mouse button. The HIWORD indicates the position that the scroll box has been dragged to. | |
constexpr size_t | SB_TOP |
Scrolls to the upper left. | |
constexpr size_t | SB_LEFT |
Scrolls to the upper left. | |
constexpr size_t | SB_BOTTOM |
Scrolls to the lower right. | |
constexpr size_t | SB_RIGHT |
Scrolls to the lower right. | |
constexpr size_t | SB_ENDSCROLL |
Ends scroll. | |
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Designates a horizontal scroll bar. If neither the SBS_BOTTOMALIGN nor SBS_TOPALIGN style is specified, the scroll bar has the height, width, and position specified by the x, y, nWidth, and nHeight parameters of CreateWindowEx.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Designates a vertical scroll bar. If you specify neither the SBS_RIGHTALIGN nor the SBS_LEFTALIGN style, the scroll bar has the height, width, and position specified by the x, y, nWidth, and nHeight parameters of CreateWindowEx.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Aligns the top edge of the scroll bar with the top edge of the rectangle defined by the x, y, nWidth, and nHeight parameters of CreateWindowEx. The scroll bar has the default height for system scroll bars. Use this style with the SBS_HORZ style.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Aligns the left edge of the scroll bar with the left edge of the rectangle defined by the x, y, nWidth, and nHeight parameters of CreateWindowEx. The scroll bar has the default width for system scroll bars. Use this style with the SBS_VERT style.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Aligns the bottom edge of the scroll bar with the bottom edge of the rectangle defined by the x, y, nWidth, and nHeight parameters of CreateWindowEx function. The scroll bar has the default height for system scroll bars. Use this style with the SBS_HORZ style.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Aligns the right edge of the scroll bar with the right edge of the rectangle defined by the x, y, nWidth, and nHeight parameters of CreateWindowEx. The scroll bar has the default width for system scroll bars. Use this style with the SBS_VERT style.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
SAligns the upper left corner of the size box with the upper left corner of the rectangle specified by the x, y, nWidth, and nHeight parameters of CreateWindowEx. The size box has the default size for system size boxes. Use this style with the SBS_SIZEBOX or SBS_SIZEGRIP styles.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Aligns the lower right corner of the size box with the lower right corner of the rectangle specified by the x, y, nWidth, and nHeight parameters of CreateWindowEx. The size box has the default size for system size boxes. Use this style with the SBS_SIZEBOX or SBS_SIZEGRIP styles.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Designates a size box. If you specify neither the SBS_SIZEBOXBOTTOMRIGHTALIGN nor the SBS_SIZEBOXTOPLEFTALIGN style, the size box has the height, width, and position specified by the x, y, nWidth, and nHeight parameters of CreateWindowEx.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Same as SBS_SIZEBOX, but with a raised edge.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Shows or hides a window's standard horizontal scroll bars.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Shows or hides a window's standard vertical scroll bar.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Shows or hides a scroll bar control. The hwnd parameter must be the handle to the scroll bar control.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Shows or hides a window's standard horizontal and vertical scroll bars.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Scrolls one line up.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Scrolls one line left.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Scrolls one line down.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Scrolls one line right.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Scrolls one page up.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Scrolls one page left.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Scrolls one page down.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Scrolls one page right.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
The user has dragged the scroll box (thumb) and released the mouse button. The HIWORD indicates the position of the scroll box at the end of the drag operation.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
The user is dragging the scroll box. This message is sent repeatedly until the user releases the mouse button. The HIWORD indicates the position that the scroll box has been dragged to.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Scrolls to the upper left.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Scrolls to the upper left.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Scrolls to the lower right.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Scrolls to the lower right.
|
constexpr |
#include <xtd.forms.native/include/xtd/forms/native/scroll_bar_styles.h>
Ends scroll.