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

ENDROPFILES

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

描述

 

The ENDROPFILES structure contains information associated with an EN_DROPFILES notification message. A rich edit control sends this notification message when it receives a WM_DROPFILES message.

 

C/C++ 语法

 

typedef struct _endropfiles {

NMHDR nmhdr;

HANDLE hDrop;

LONG cp;

BOOL fProtected;

} ENDROPFILES;

 

FreeBasic Syntax

 

TYPE ENDROPFILES

nmhdr      AS NMHDR

hDrop      AS HANDLE

cp         AS LONG

fProtected AS WINBOOL

END TYPE

 

成员

 

nmhdr

 

NMHDR notification header.

 

hDrop

 

Handle to the dropped files list (same as with WM_DROPFILES ). This handle is used with the DragFinish, DragQueryFile, and DragQueryPoint functions.

 

cp

 

Character position at which the dropped files would be inserted.

 

fProtected

 

Boolean value specifying whether the specified character position is protected (TRUE) or not protected (FALSE).

 

最低操作系统

 

Windows 95, Windows NT 4.0.