LBitmap::operator =
#include "ltwrappr.h"
LBitmap& LBitmap::operator =(LBitmapSrc)
LBitmap& LBitmapSrc; |
/* the source LEAD bitmap */ |
Copies of a bitmap from another LBitmap object.
Parameter |
Description |
LBitmapSrc |
The source LEAD bitmap. |
Returns
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Comments
Use this operator to make a copy of a bitmap from another LBitmap object. Only the bitmap data and handle will be copied, all other data members of the destination bitmap will not be changed.
The LBitmapSrc parameter is passed by reference, and is a required parameter.
Required DLLs and Libraries
LTDIS For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
See Also
Functions: |
Example
LBitmap MyBitmap1, MyBitmap2;
MyBitmap1.Load(TEXT("image1.cmp"));
//now copy the bitmap
MyBitmap2= MyBitmap1;