|
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
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|