Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.10.24
LEADTOOLS Raster imaging C++ Class library help

LBitmapList::LBitmapList

Show in webframe

#include "ltwrappr.h"

LBitmapList::LBitmapList()

LBitmapList::LBitmapList(pBitmapList)

LBitmapList * pBitmapList;

/* pointer to an LBitmapList object */

Constructs and initializes the member variables of an LBitmapList object.

Parameter

Description

pBitmapList

Pointer to a bitmap list object to be used for initializing the object.

Returns

None

Comments

LBitmapList::LBitmapList() is the default constructor for the LBitmapList class.

LBitmapList::LBitmapList(pBitmapList) constructor will initialize the class object's bitmap list from the passed object's bitmap list, and then invalidate the passed object.

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.

Platforms

Win32, x64.

See Also

Functions:

LBitmapList::~LBitmapList, Class Members

Example

This is an example for LBitmapList::LBitmapList():

L_INT LBitmapList__LBitmapListFirstExample()
{
   L_INT nRet;
   LBitmapList bmpList;
   // call create to have a valid LBitmapList object
   nRet = bmpList.Create();
   return nRet;
}
//This is an example for LBitmapList::LBitmapList(pBitmapList):
L_INT LBitmapList__LBitmapListSecondExample(HWND hWnd)
{
   UNREFERENCED_PARAMETER(hWnd);
   LBitmapList FirstList;
   // call create to make the list valid
   FirstList.Create();
   //... load FirstList with data
   LBitmapList SecondList(&FirstList);
   
   return SUCCESS;
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.