Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Constants, prefix the name with the module name and a period.
EM_ (Constants)
.
Definitions / Descriptions
Alphabetical list.
Name
Value
Comment
EM_EXGETSEL
WM_USER + 52
TODO
EM_EXSETSEL
WM_USER + 55
TODO
EM_GETCHARFORMAT
WM_USER + 58
TODO
EM_GETOPTIONS
WM_USER + 78
TODO
EM_GETSCROLLPOS
WM_USER + 221
TODO
EM_GETSEL
0x00B0
TODO
EM_GETTEXTEX
WM_USER + 94
TODO
EM_GETTEXTLENGTHEX
WM_USER + 95
TODO
EM_SETCHARFORMAT
WM_USER + 68
TODO
EM_SETOPTIONS
WM_USER + 77
TODO
EM_SETSCROLLPOS
WM_USER + 222
TODO
EM_SETSEL
0x00B1
TODO
EM_SETTEXTEX
WM_USER + 97
TODO
EM_SHOWSCROLLBAR
WM_USER + 96
TODO
EM_EMPTYUNDOBUFFER
0x00CD
TODO
C# Constants:
TODO. Vide the enumerations.
C# Enumerations:
/// <summary>
/// Edit control message IDs.
/// </summary>
/// <remarks>
/// Based on EM_* constants defined in winuser.h in the Windows API.
/// The declared type of the enum is int, because the WM enumeration is int also.
/// </remarks>
public enum EM : int
{
GETSEL = 0x00B0,
SETSEL = 0x00B1,
}
/// <summary>
/// Edit control message IDs, specifically for rich edit controls.
/// </summary>
/// <remarks>
/// Based on EM_* constants defined in richedit.h in the Windows API.
/// The declared type of the enum is int, because WM enumeration is int also.
///
/// WM.USER is a enumeration value defined elsewhere, with a value of 0x0400.
/// </remarks>
public enum EM_Rich : int
{
EXGETSEL = WM.USER + 52,
EXSETSEL = WM.USER + 55,