LBitmapList::HasGlobalBackground
#include "ltwrappr.h"
L_BOOL LBitmapList::HasGlobalBackground(L_VOID)
Determines whether the class object's bitmap list has a global background color.
Returns
TRUE |
The bitmap list has a global background color. |
FALSE |
The bitmap list does not have a global background color. |
Required DLLs and Libraries
LTFIL 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
L_VOID TestHasGlobalBackground(L_TCHAR L_FAR * pszFileName)
{
LBitmapList BitmapList;
L_BOOL bGlobalBackground;
BitmapList.Load (pszFileName);
bGlobalBackground = BitmapList.HasGlobalBackground ();
//...
}