LBitmapList::HasGlobalBackground

Summary

Determines whether the class object's bitmap list has a global background color.

Syntax

#include "ltwrappr.h"

L_BOOL LBitmapList::HasGlobalBackground()

Returns

Value Meaning
TRUE The bitmap list has a global background color.
FALSE The bitmap list does not have a global background color.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Example

L_INT LBitmapList__HasGlobalBackgroundExample(L_TCHAR  * pszFileName) 
{ 
   L_INT nRet; 
   LBitmapList BitmapList; 
   L_BOOL bGlobalBackground; 
 
   nRet =BitmapList.Load (pszFileName); 
   if(nRet !=SUCCESS) 
      return nRet; 
   bGlobalBackground = BitmapList.HasGlobalBackground (); 
   //... 
   return SUCCESS; 
} 
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.