导航:  Windows Controls Procedures > Rich Edit Control > Structures >

ENPROTECTED

上一页返回章节概述下一页

描述

 

The ENPROTECTED structure contains information associated with an EN_PROTECTED notification message. A rich edit control sends this notification when the user attempts to edit protected text.

 

C/C++ 语法

 

typedef struct _enprotected {

NMHDR nmhdr;

UINT msg;

WPARAM wParam;

LPARAM lParam;

CHARRANGE chrg;

} ENPROTECTED;

 

FreeBasic Syntax

 

TYPE ENPROTECTED

nmhdr  AS NMHDR

msg    AS UINT

wParam AS WPARAM

lParam AS LPARAM

chrg   AS CHARRANGE

END TYPE

 

成员

 

nmhdr

 

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

 

msg

 

Message that triggered the notification.

 

wParam

 

The wParam parameter of the message.

 

lParam

 

The lParam parameter of the message.

 

chrg

 

CHARRANGE structure that specifies the current selection.

 

最低操作系统

 

Windows 95, Windows NT 4.0.