|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| user32.lib
| Header File
| winuser.h
| Unicode
| No
| Platform Notes
| None
|
|
|
SetDoubleClickTime
The SetDoubleClickTime function sets the double-click time for the mouse. A double-click is a series
of two clicks of a mouse button, the second occurring within a specified time
after the first. The double-click time is the maximum number of milliseconds
that may occur between the first and second clicks of a double-click.
BOOL SetDoubleClickTime(
UINT uInterval
| // double-click interval
| );
|
|
Parameters
uInterval
Specifies the number of milliseconds that may occur between the first and
second clicks of a double-click. If this parameter is set to zero, Windows uses the
default double-click time of 500 milliseconds.
Return Values
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero.
Remarks
The SetDoubleClickTime function alters the double-click time for all windows in the system.
See Also
GetDoubleClickTime
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 Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|