|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| user32.lib
| Header File
| winuser.h
| Unicode
| No
| Platform Notes
| None
|
|
|
DrawAnimatedRects
[Now Supported on Windows NT]
The DrawAnimatedRects function draws a wire-frame rectangle and animates it to indicate the opening
of an icon or the minimizing or maximizing of a window.
BOOL WINAPI DrawAnimatedRects(
HWND hwnd,
| // handle to clipping window
| int idAni,
| // type of animation
| CONST RECT *lprcFrom,
| // pointer to rectangle coordinates (minimized)
| CONST RECT *lprcTo
| // pointer to rectangle coordinates (restored)
| );
|
|
Parameters
hwnd
Handle to the window to which the rectangle is clipped. If this parameter is
NULL, the working area of the screen is used.
idAni
This parameter is reserved and must be zero.
lprcFrom
Points to a SMALL_RECT structure specifying the location and size of the icon or minimized window.
Coordinates are relative to the rectangle specified by the lprcClip parameter.
lprcTo
Points to a SMALL_RECT structure specifying the location and size of the restored window.
Coordinates are relative to the rectangle specified by the lprcClip parameter.
Return Values
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero.
See Also
SMALL_RECT
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
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
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
|