LImageViewerCell::SetCellTag

Summary

Sets a tag on a specific location in a specific cell.

Syntax

#include "ltwrappr.h"

L_INT LImageViewerCell::SetCellTag(uRow, uAlign, uType, pString, uFlags);

Parameters

L_UINT uRow

The number of rows to count before placing the tag.

L_UINT uAlign

Value that specifies the origin point from which to count the rows specified in the uRow parameter. For example, if uAlign is DISPWIN_ALIGN_BOTTOMLEFT and uRow is 4, the application will count 4 rows from the bottom and place the tag on that location. Possible values are:

Value Meaning
DISPWIN_ALIGN_TOPLEFT [0x0000] Start counting rows from the top of the cell. The tag will be left justified.
DISPWIN_ALIGN_LEFTCENTER [0x0001] The tag is placed in the center, based on the height of the cell, and is left justified.
DISPWIN_ALIGN_BOTTOMLEFT [0x0002] Start counting rows from the bottom of the cell. The tag will be left justified.
DISPWIN_ALIGN_TOPCENTER [0x0003] The tag is placed in the center, based on the width of the cell, and is top justified.
DISPWIN_ALIGN_BOTTOMCENTER [0x0004] The tag is placed in the center, based on the width of the cell, and is bottom justified.
DISPWIN_ALIGN_TOPRIGHT [0x0005] Start counting rows from the top of the cell. The tag will be right justified.
DISPWIN_ALIGN_RIGHTCENTER [0x0006] The tag is placed in the center, based on the height of the cell, and is right justified.
DISPWIN_ALIGN_BOTTOMRIGHT [0x0007] Start counting rows from the bottom of the cell. The tag will be right justified.

L_UINT uType

Value that represents the type of tag to be added. Possible values are:

Value Meaning
DISPWIN_TYPE_USERDATA [0x0000] User data tag
DISPWIN_TYPE_SCALE [0x0001] Scale tag
DISPWIN_TYPE_WLCENTERWIDTH [0x0002] Window level tag
DISPWIN_TYPE_FIELDOFVIEW [0x0003] Field of view tag
DISPWIN_TYPE_OWNERDRAW [0x0004] Owner draw tag
DISPWIN_TYPE_FRAME [0x0005] Frame tag.
DISPWIN_TYPE_RULERUNIT [0x0006] The ruler unit.
DISPWIN_TYPE_LEFTORIENTATION [0x0007] Reserved for future.
DISPWIN_TYPE_RIGHTORIENTATION [0x0008] Reserved for future.
DISPWIN_TYPE_TOPORIENTATION [0x0009] Reserved for future.
DISPWIN_TYPE_BOTTOMORIENTATION [0xA] Reserved for future.
DISPWIN_TYPE_OFFSET [0xB] Image Offset tag.
DISPWIN_TYPE_ALPHA [0xC] Alpha value tag.

LPTSTR pString

String containing a custom tag. This parameter is only used if uType is set to DISPWIN_TYPE_USERDATA.

L_UINT uFlags

Flags that determine whether to apply the feature on the one cell only, or more than one cell. This value can only be used when the cell is attached to the ImageViewer through the function LImageViewer::InsertCell. Possible values are:

Value Meaning
CELL_APPLYTOTHIS [0x00000000] Apply the feature to this cell only.
CELL_APPLYTOALL [0x10000000] Apply the feature to all the cells in the Image Viewer.
CELL_APPLYTOSELECTED [0x20000000] Apply the feature to the selected cells in the Image Viewer.
CELL_ALL [0x30000000] Apply the feature to all cells in the Image Viewer.
CELL_INV_ALL [0xcfffffff] For internal use only.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

If two tags are written to the same location, the second tag written will overwrite the first tag.

To change the quality of the tag text, call the LImageViewer::SetProperties function.

Required DLLs and Libraries

See Also

Functions

Topics

Example

For an example, refer to LImageViewer::Create.

Help Version 22.0.2022.12.7
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Medical Image Viewer C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.