LBitmapList::GetGlobalHeight
#include "ltwrappr.h"
L_INT LBitmapList::GetGlobalHeight(L_VOID)
Gets the global height for the class object's bitmap list items.
Returns
The global height for the bitmap list items.
Comments
GlobalHeight is the height of images in a multipage GIF file.
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 TestGetHeight(L_TCHAR L_FAR * pszFileName)
{
LBitmapList BitmapList;
L_INT nHeight;
BitmapList.Load (pszFileName);
nHeight = BitmapList.GetGlobalHeight ();
//...
}