LImageViewer::GetCellProperties

#include "ltwrappr.h"

L_INT LImageViewer::GetCellProperties (nCellIndex, pCellProperties, uFlags);

L_INT nCellIndex;

/* index of a cell */

pDISPCELLPROPERTIES pCellProperties;

/* pointer to a cell options structure */

L_UINT uFlags;

/* reserved for future use */

Gets the current properties of the specified cell. This function is available only in the Medical Imaging Suite toolkits.

Parameter

Description

NCellIndex

A zero-based index of the cell for which to get the properties.

pCellProperties

Pointer to a DISPCELLPROPERTIES structure to be updated with the current cell properties.

uFlags

Reserved for future use. Must be zero.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. To get extended error information, call GetLastError, and refer to Return Codes.

Comments

Before calling LImageViewer::GetCellProperties,

image\sqrblit.gif Declare a variable of type DISPCELLPROPERTIES.

image\sqrblit.gif Set DISPCELLPROPERTIES.uStructSize to sizeof(DISPCELLPROPERTIES)

image\sqrblit.gif Set DISPCELLPROPERTIES.uMask to indicate the properties to update with current values

image\sqrblit.gif Pass a pointer to the DISPCELLPROPERTIES structure to LImageViewer::GetCellProperties as the pCellProperties parameter.

To set new cell properties, call LImageViewer::SetCellProperties.

For more information on the available properties that can be used to control the behavior of the cell, refer to the DISPCELLPROPERTIES structure.

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, LImageViewer::SetCellBitmapList, LImageViewer::SetCellTag, LImageViewer::SetCellProperties, LImageViewer::GetCellPosition, LImageViewer::RepositionCell, LImageViewer::GetCellBitmapList, LImageViewer::GetCellBounds, LImageViewer::FreezeCell, LImageViewer::SetBounds, LImageViewer::SelectCell, LImageViewer::IsCellSelected, LImageViewer::IsCellFrozen, Class Members

Topics:

Image Viewer Cells

 

Window Control/Image Viewer Functions: Image Viewer Cells

Example

For an example, refer to LImageViewer::Create.