Available in LEADTOOLS Medical Imaging toolkits. |
L_DispContainerPrintSubCell
#include "l_bitmap.h"
L_LTIVW_API L_HBITMAP EXT_FUNCTION L_DispContainerPrintSubCell(hCon, nCellIndex, nSubCellIndex, uFlags)
HDISPCONTAINER hCon; |
/* handle to the container */ |
L_INT nCellIndex; |
/* index of a cell */ |
L_INT nSubCellIndex; |
/* index into the image list attached to the cell */ |
L_UINT uFlags; |
/* flag */ |
Returns a printable version of the specified sub-cell.
Parameter |
Description |
|
hCon |
Handle to the container. |
|
nCellIndex |
A zero-based index of the cell that contains the sub-cell to be printed. |
|
nSubCellIndex |
A zero-based index into the image list attached to the cell specified in nCellIndex. This sub-cell will be printed. Pass -1 to print the entire cell. Pass -2 to print the selected sub-cell. |
|
uFlags |
Flag that indicate which part of the cell to print. You can use a bitwise OR (|) to specify one or more flags from each group. |
|
|
The following are the flags that indicates which part of the cell is going to be printed: |
|
|
Value |
Meaning |
|
CONTAINER_PRINTCELL_ALL |
[0x0000001F] Print everything on the cell of the returned HBITMAP. |
|
CONTAINER_PRINTCELL_REGION |
[0x00000001] Print the region. |
|
CONTAINER_PRINTCELL_ANNOTATION |
[0x00000002] Print the annotation if any. |
|
CONTAINER_PRINTCELL_BORDERS |
[0x00000004] Print the border. |
|
CONTAINER_PRINTCELL_TAG |
[0x00000008] Print the tags. |
|
CONTAINER_PRINTCELL_RULERS |
[0x00000010] Print the ruler. |
|
The following flag is used to resize the sub-cell to fit the entire cell area when printed. This value is ignored if nSubCellIndex is set to �1. |
|
|
Value |
Meaning |
|
CONTAINER_PRINTCELL_EXPLODED |
[0x00000020] Expand the sub-cell to fit the entire cell area. |
Returns
HBITMAP |
The function was successful. |
NULL |
An error occurred. Refer to Return Codes. To get the error call GetLastError() function. |
Comments
You can print any sub-cell even if it is not currently being viewed.
To print the entire cell, call L_DispContainerPrintCell function.
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. |
Platforms
Windows 2000 /XP/Vista.
See Also
Functions: |
L_DispContainerCreate, L_DispContainerDestroy, L_DispContainerPrintCell, L_DispContainerRepaintCell, L_DispContainerUpdateCellView. |
Topics: |
|
|
Example
This example print the first sub-cell of the first cell without including the annotation if any exist
#if defined (LEADTOOLS_V16_OR_LATER) HBITMAP DispContainerPrintSubCellExample(HDISPCONTAINER hCon) { HBITMAP hBitmap = L_DispContainerPrintSubCell(hCon, 0, 0, CONTAINER_PRINTCELL_ALL ^ CONTAINER_PRINTCELL_ANNOTATION); return hBitmap; } #endif