1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use UIWindowsAndMessaging as winmsg;
/// Creates an edit control that automatically scrolls horizontally as text is
/// entered
pub use ES_AUTOHSCROLL;
/// Creates an edit control that automatically scrolls vertically when there is
/// more text than can be displayed within the control
pub use ES_AUTOVSCROLL;
/// Specifies that multiline edit controls center justify text
pub use ES_CENTER;
/// Specifies that the edit control left justify its text
pub use ES_LEFT;
/// All uppercase characters entered into the edit control is displayed as
/// lowercase
pub use ES_LOWERCASE;
/// Causes the edit control to be a multiline control
pub use ES_MULTILINE;
/// Negates the default behavior for an edit control, which is to hide the
/// selection when the control loses the input focus and invert the selection
/// when the control receives the input focus
pub use ES_NOHIDESEL;
/// Converts text entered in the edit control from the default character set to
/// the OEM character set and then back to the default character set
pub use ES_OEMCONVERT;
/// Hides all characters and displays them as an asterisk as they are typed into
/// the edit control
pub use ES_PASSWORD;
/// Prevents the user from typing or editing text in the edit control
pub use ES_READONLY;
/// Right aligns text in a multiline edit control
pub use ES_RIGHT;
/// Converts all characters to uppercase as they are typed into the edit control
pub use ES_UPPERCASE;
/// Specifies that a carriage return be inserted when the user presses the ENTER
/// key while entering text into a multiline edit control
pub use ES_WANTRETURN;