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. Pass 0. |
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,
Declare a variable of type DISPCELLPROPERTIES.
Set DISPCELLPROPERTIES.uStructSize to sizeof(DISPCELLPROPERTIES)
Set DISPCELLPROPERTIES.uMask to indicate the properties to update with current values
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
Example
For an example, refer to LImageViewer::Create.