This structure is sent in the DTM_SETIMAGE message from the application to the HTML control.
At a Glance
Header file: | Htmlctrl.c |
Windows CE versions: | 1.0 and later |
Syntax
typedef struct tagINLINEIMAGEINFO {
DWORD dwCookie;
int iOrigHeight;
int iOrigWidth;
HBITMAP hbm;
BOOL bOwnBitmap;
} INLINEIMAGEINFO, *LPINLINEIMAGEINFO;
Members
dwCookie
Specifies the cookie value passed in the dwCookie member of the NM_HTMLVIEW structure when an NM_INLINE_IMAGE notification message is received from the HTML control.
iOrigHeight
Original height of the image.
iOrigWidth
Original width of the image.
hbm
Handle to the bitmap of the image.
bOwnBitmap
Boolean that is set to TRUE if the HTML control will destroy the bitmap when the page is destroyed, or to FALSE if the HTML control will not destroy the bitmap.
See Also