xtd 0.2.0
Loading...
Searching...
No Matches
edit_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(ES_LEFT)
20constexpr size_t ES_LEFT = 0x00000000L;
27constexpr size_t ES_CENTER = 0x00000001L;
34constexpr size_t ES_RIGHT = 0x00000002L;
41constexpr size_t ES_MULTILINE = 0x00000004L;
48constexpr size_t ES_UPPERCASE = 0x00000008L;
55constexpr size_t ES_LOWERCASE = 0x00000010L;
62constexpr size_t ES_PASSWORD = 0x00000020L;
69constexpr size_t ES_AUTOVSCROLL = 0x00000040L;
77constexpr size_t ES_AUTOHSCROLL = 0x00000080L;
84constexpr size_t ES_NOHIDESEL = 0x00000100L;
91constexpr size_t ES_OEMCONVERT = 0x00000400L;
98constexpr size_t ES_READONLY = 0x00000800L;
105constexpr size_t ES_WANTRETURN = 0x00001000L;
112constexpr size_t ES_NUMBER = 0x00002000L;
113#endif
120constexpr size_t ES_WANTTAB = 0x00004000L;
constexpr size_t ES_NOHIDESEL
Normally, an edit control hides the selection when the control loses the input focus and inverts the ...
Definition edit_styles.h:84
constexpr size_t ES_READONLY
Prevents the user from entering or editing text in the edit control.
Definition edit_styles.h:98
constexpr size_t ES_UPPERCASE
Converts all characters to uppercase as they are typed into the edit control.
Definition edit_styles.h:48
constexpr size_t ES_AUTOHSCROLL
Automatically scrolls text to the right by 10 characters when the user types a character at the end o...
Definition edit_styles.h:77
constexpr size_t ES_NUMBER
Allows only digits to be entered into the edit control.
Definition edit_styles.h:112
constexpr size_t ES_AUTOVSCROLL
Automatically scrolls text up one page when the user presses ENTER on the last line.
Definition edit_styles.h:69
constexpr size_t ES_LEFT
Left-aligns text in a single-line or multiline edit control.
Definition edit_styles.h:20
constexpr size_t ES_LOWERCASE
Converts all characters to lowercase as they are typed into the edit control.
Definition edit_styles.h:55
constexpr size_t ES_CENTER
Centers text in a single-line or multiline edit control.
Definition edit_styles.h:27
constexpr size_t ES_MULTILINE
Designates a multiple-line edit control. (The default is single line.) If the ES_AUTOVSCROLL style is...
Definition edit_styles.h:41
constexpr size_t ES_PASSWORD
Displays all characters as an asterisk (*) as they are typed into the edit control....
Definition edit_styles.h:62
constexpr size_t ES_WANTRETURN
Specifies that a carriage return be inserted when the user presses the ENTER key while entering text ...
Definition edit_styles.h:105
constexpr size_t ES_RIGHT
Right-aligns text in a single-line or multiline edit control.
Definition edit_styles.h:34
constexpr size_t ES_WANTTAB
Specifies that a tabulation be inserted when the user presses the TAB key while entering text into a ...
Definition edit_styles.h:120
constexpr size_t ES_OEMCONVERT
Text entered in the edit control is converted from the ANSI character set to the OEM character set an...
Definition edit_styles.h:91