|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| -
| Header File
| richedit.h
| Unicode
| No
| Platform Notes
| None
|
|
|
SELCHANGE
The SELCHANGE stucture contains information associated with an EN_SELCHANGE notification message. A rich edit control sends this notification to its
parent window when the current selection changes.
typedef struct _selchange {
NMHDR nmhdr;
CHARRANGE chrg;
WORD seltyp;
} SELCHANGE;
Members
nmhdr
Notification header.
chrg
New selection range.
seltyp
Value specifying the contents of the new selection. This member is SEL_EMPTY
if the selection is empty or one or more of the following values:
Value
| Contents of the selection
| SEL_TEXT
| Text
| SEL_OBJECT
| At least one OLE object
| SEL_MULTICHAR
| More than one character of text
| SEL_MULTIOBJECT
| More than one OLE object
|
See Also
EN_SELCHANGE
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|