Windows API Guide: CB_GETCOUNT Message


Declare Function CopyRect Lib "user32.dll" (lpDestRect As RECT, lpSourceRect As RECT) As Long

Platforms: Win 32s, Win 95/98, Win NT

CopyRect sets one rectangle equal to another. This is done by duplicating all of the source rectangle's member values to the corresponding ones in the target rectangle. This is faster than setting all four values manually in your code. The function returns 0 if an error occured, or 1 if successful.

lpDestRect
The target rectangle to set.
lpSourceRect
The source rectangle.

Example:

' Set the source and target rectangels equal to the rectangle ' of the window by copying the source to the target Dim source As RECT, target As RECT  ' source & target rectangles Dim retval As Long  ' return value ' Get the rectangle of Form1 into source retval = GetWindowRect(Form1.hWnd, source) ' Copy source into target retval = CopyRect(target, source)

See Also: EqualRect
Category: Rectangles

Go back to the alphabetical Function listing.
Go back to the Reference section index.


This page is copyright © 2000 Paul Kuliniewicz. Copyright Information.
Go back to the Windows API Guide home page.
E-mail: vbapi@vbapi.com Send Encrypted E-Mail
This page is at http://www.vbapi.com/ref/c/copyrect.html



Windows API Guide
Windows API Guide - Reference - Volume 1: Version 3.0 For the MS-DOS and PC-DOS Operating Systems
ISBN: B001V0KQIY
EAN: N/A
Year: 1998
Pages: 610

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net