CTLINITHEDIT 

2.0     

Initialization information for a handwriting edit (hedit) control.

typedef struct { 

     DWORD cbSize;

     HWND hwnd;

     int id;

     DWORD dwFlags;

     DWORD dwReserved;

} CTLINITHEDIT;

 

Members

cbSize

Size of this structure in bytes.

hwnd

Handle of boxed edit window.

id

Control identifier.

dwFlags

Flags that determine some properties of the hedit control. This can be a combination of the following values:

Constant

Description

CIH_NOGDMSG

(Not supported in Japanese version.) Do not put up the garbage-detection message box when writing in this hedit control.

CIH_NOACTIONHANDLE

Do not create action handles for this hedit control.

CIH_NOEDITTEXT

Do not show the edit text, insert text, or  writing tool dialogs when writing in this hedit control.

CIH_NOFLASHCURSOR

Do not change the cursor while doing tap-and-hold selection in this hedit control.

 

dwReserved

Reserved, should be set to 0.

 

Comments

Before using CTLINITHEDIT, an application must initialize cbSize with sizeof( CTLINITHEDIT ).

See Also

WM_CTLINIT