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.
Size of this structure in bytes. Use the sizeof() operator to calculate this value.
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. |
Pointer to a bitmap handle that references the items bitmap.
Size of the structure pointed to by pBitmap, for versioning. Use sizeof(LILITEM).
Character string that contains the items text.
Items user data.
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. |
Index of the specified item. This index is zero-based.
Character string that contains the items extra text.
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 Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document