ENLINK structure (richedit.h)

Contains information about an EN_LINK notification code from a rich edit control.

Syntax

typedef struct _enlink {
  NMHDR     nmhdr;
  UINT      msg;
  WPARAM    wParam;
  LPARAM    lParam;
  CHARRANGE chrg;
} ENLINK;

Members

nmhdr

Type: NMHDR

The code member of this structure identifies the notification code being sent.

msg

Type: UINT

Identifier of the message that caused the rich edit control to send the EN_LINK notification code.

wParam

Type: WPARAM

The wParam parameter of the message received by the rich edit control.

lParam

Type: LPARAM

The lParam parameter of the message received by the rich edit control.

chrg

Type: CHARRANGE

The range of consecutive characters in the rich edit control that have the CFE_LINK effect.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Header richedit.h

See also

CHARRANGE

EN_LINK

NMHDR

Reference