LILITEM

typedef struct _LILITEM 
{ 
   L_UINT uStructSize; 
   L_UINT32 uMask; 
   pBITMAPHANDLE pBitmap; 
   L_UINT uBitmapStructSize; 
   L_TCHAR * pText; 
   L_INT32 lData; 
   L_BOOL bSelected; 
   L_INT32 lIndex; 
   L_TCHAR * pTextExt; /* the item's extended text */ 
} LILITEM, * pLILITEM; 

The LILITEM structure contains information about a specific item in the image list.

Members

uStructSize

Size of this structure in bytes. Use the sizeof() operator to calculate this value.

uMask

Mask for getting and setting the item. Possible values are:

Value Meaning
LILITEM_BITMAP [0x01] Get/set the bitmap.
LILITEM_TEXT [0x02] Get/set the text.
LILITEM_DATA [0x04] Get/set the data.
LILITEM_SELECTED [0x08] Get/set the selected flag.
LILITEM_TEXTEXT [0x10] Get/set the extra text.

pBitmap

Pointer to a bitmap handle that references the items bitmap.

uBitmapStructSize

Size of the structure pointed to by pBitmap, for versioning. Use sizeof(LILITEM).

pText

Character string that contains the items text.

lData

Items user data.

bSelected

Flag that indicates whether or not the item is selected. Possible values are:

Value Meaning
TRUE The item is selected.
FALSE The item is not selected.

lIndex

Index of the specified item. This index is zero-based.

pTextExt

Character string that contains the items extra text.

Comments

pTextExt can be used to store an extra text string for the item. For example, you can store the filename in pText (which gets displayed in the control), and the fully qualified path and filename in pTextExt.

The structure is used by:

Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

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