LImageViewerCell::PrintCell

#include "ltwrappr.h"

HBITMAP LImageViewerCell::PrintCell(uFlags)

L_UINT uFlags;

/* reserved for future */

Returns a Windows bitmap, HBITMAP, that contains a printable version of the specified cell or sub-cell.

Parameter

Description

uFlags

Reserved for future use. Pass 0.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

Once the HBITMAP is no longer needed, you should delete it using the windows function DeleteObject.

Required DLLs and Libraries

LTIVW

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

See Also

Functions:

LImageViewer::Create, LImageViewer::RemoveCell, LImageViewer::InsertCell, LImageViewer::GetCellCount, LImageViewer::GetWindowHandle, LImageViewerCell::SetCellBitmapList, LImageViewerCell::SetCellTag, LImageViewerCell::GetCellProperties, LImageViewer::GetCellPosition, LImageViewer::RepositionCell, LImageViewerCell::GetCellBitmapList, LImageViewer::GetCellBounds, LImageViewerCell::FreezeCell, LImageViewerCell::SelectCell, LImageViewerCell::IsCellSelected, LImageViewerCell::IsCellFrozen, Class Members

Topics:

Image Viewer Cells

 

Window Control/Image Viewer Functions: Image Viewer Cells

Example

This example print the first cell

#if defined LTV17_CONFIG
HBITMAP LImageViewer_PrintCellExample(LImageViewerCell& ImageViewerCell)
{
   HBITMAP hBitmap = ImageViewerCell.PrintCell(0);
   return hBitmap;
}
#else
HBITMAP LImageViewer_PrintCellExample(LImageViewer& ImageViewer)
{
   HBITMAP hBitmap = ImageViewer.PrintCell( 0, 0);
   return hBitmap;
}
#endif // LTV17_CONFIG