Contents Index Topic Contents | ||
Previous Topic: Header_CreateDragImage Next Topic: Header_GetImageList |
Header_DeleteItem
BOOL Header_DeleteItem( hwndHD, index );Deletes an item from a header control. You can use this macro or send the HDM_DELETEITEM message explicitly.
- Returns TRUE if successful, or FALSE otherwise.
- hwndHD
- Handle to the header control.
- index
- Index of the item to delete.
The Header_DeleteItem macro is defined as follows:
#define Header_DeleteItem(hwndHD, index) \ (BOOL)SendMessage((hwndHD), HDM_DELETEITEM, (WPARAM)(int)(index), 0L)
Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.