#include "ltivw.h"
L_LTIVW_API L_INT L_DispContainerSetCellBitmapList(hCellWnd, hBitmapList, bCleanImage, uFlags)
Attaches a bitmap list to the cell at the specified index.
A handle to the window that represents the cell on which the function's effect will be applied.
Handle to the list of bitmaps, which will be attached to the cell at the index specified in nCellIndex. Pass NULL to remove the current bitmap list.
Removing the current bitmap list will not free the attached image(s). The value in the bCleanImage parameter determines whether the image(s) associated with the removed bitmap list are also freed.
Flag that specifies whether to free the bitmap list that was previously attached to the cell. Possible values are:
Value | Meaning |
---|---|
TRUE | Free the bitmap list that was previously attached to the cell. |
FALSE | Do not free the bitmap list that was previously attached to the cell. |
Reserved for future use. Pass 0.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
It is best not to modify an existing bitmap list attached to a specific cell. However, if it is necessary to modify an attached bitmap list, follow the steps below:
If the cell already has a bitmap list and you call this function with hBitmapList set to another valid list of bitmaps and bCleanImage set to TRUE, this function frees the current attached list and attaches the new list to the cell.
If the cell already has a bitmap list and you call this function with hBitmapList set to another valid list of bitmaps and bCleanImage set to FALSE, this function will just overwrite the current list of bitmap with the new list of bitmaps. And the current list will just take up memory until the application ends.
Required DLLs and Libraries
For an example, refer to L_DispContainerCreate.