The ENLINK structure contains information about an EN_LINK notification message from a rich edit control.
Syntax
typedef struct {
NMHDR nmhdr;
UINT msg;
WPARAM wParam;
LPARAM lParam;
CHARRANGE chrg;
} ENLINK;
Members
- nmhdr
-
A NMHDR structure. The code member of this structure identifies the notification message being sent.
- msg
-
Identifier of the message that caused the rich edit control to send the EN_LINK notification message.
- wParam
-
The wParam parameter of the message received by the rich edit control.
- lParam
-
The lParam parameter of the message received by the rich edit control.
- chrg
-
A CHARRANGE structure that specifies the range of consecutive characters in the rich edit control that have the CFE_LINK effect.
Structure Information
| Header | Declared in Richedit.h |
|---|
| Minimum operating systems |
Windows 95 with Rich Edit 2.0, Windows 98, Windows NT 4.0 |
|---|
See Also