LBitmapBase::IsSuperCompressed
#include "ltwrappr.h"
virtual L_INT LBitmapBase::IsSuperCompressed(L_VOID)
Determines whether the class object’s bitmap is a super compressed bitmap or not.
Returns
TRUE |
The bitmap is a super compressed one. |
FALSE |
The bitmap is not a super compressed one. |
Comments
A super compressed bitmap is one that is kept compressed in memory. For more information, refer to Super Compressed Bitmaps.
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: |
|
Topics: |
Example
L_VOID TestFunction(LBitmapBase & Bitmap)
{
if (Bitmap.IsSuperCompressed())
MessageBox(NULL, TEXT("It's a super compressed bitmap!"),
TEXT("Testing"), MB_OK);
else
MessageBox(NULL, TEXT("It's not a super compressed bitmap!"),
TEXT("Testing"), MB_OK);
}