Returns a Windows bitmap, HBITMAP, that contains a printable version of the specified cell or sub-cell.
#include "ltwrappr.h"
HBITMAP LImageViewerCell::PrintCell(uFlags)
Reserved for future use. Pass 0.
Value | Meaning |
---|---|
HBITMAP | The function was successful. |
NULL | An error occurred. Refer to Return Codes. To get the error call GetLastError() function. |
Once the HBITMAP is no longer needed, you should delete it using the windows function DeleteObject.
This example print the first cell
HBITMAP LImageViewer_PrintCellExample(LImageViewerCell& ImageViewerCell)
{
HBITMAP hBitmap = ImageViewerCell.PrintCell(0);
return hBitmap;
}