|
Available in LEADTOOLS Medical Imaging toolkits. |
L_DispContainerSelectCell
#include "ltivw.h"
L_LTIVW_API L_INT L_DispContainerSelectCell(hCellWnd, bSelect, uFlags)
|
HWND hCellWnd; |
/* handle to the cell window */ |
|
L_BOOL bSelect; |
/* selection flag */ |
|
L_UINT uFlags; |
/* reserved for future use */ |
Selects or deselects the cell at the specified index.
|
Parameter |
Description |
|
|
hCellWnd |
A handle to the window that represents the cell on which the function's effect will be applied. |
|
|
bSelect |
Flag that indicates whether to select or deselect the cell at the specified index. Possible values are: |
|
|
|
Value |
Meaning |
|
|
TRUE |
Selects the cell at the specified index. |
|
|
FALSE |
Deselects the cell at the specified index. |
|
uFlags |
Reserved for future use. Pass 0. |
|
Returns
|
SUCCESS |
The function was successful. |
|
< 1 |
An error occurred. Refer to Return Codes. |
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
// This procedure inverse the selection
#if defined LEADTOOLS_V17_OR_LATER
L_INT DispContainerSelectCellExample(HDISPCONTAINER hCon)
{
L_INT nRet;
// Get the cells count.
L_INT nCount = L_DispContainerGetCellCount (hCon, 0);
L_INT nI;
for (nI = 0; nI < nCount; nI++)
{
HWND hCellWnd = L_DispContainerGetCellWindowHandle(hCon, nI, 0);
// if there is a selected cell make it unselected and vice versa
L_BOOL bSelected = L_DispContainerIsCellSelected (hCellWnd, 0);
nRet = L_DispContainerSelectCell(hCellWnd, !bSelected, 0);
if(nRet != SUCCESS)
return nRet;
}
return SUCCESS;
}
#else
L_INT DispContainerSelectCellExample(HDISPCONTAINER hCon)
{
L_INT nRet;
// Get the cells count.
L_INT nCount = L_DispContainerGetCellCount (hCon, 0);
L_INT nI;
for (nI = 0; nI < nCount; nI++)
{
// if there is a selected cell make it unselected and vice versa
L_BOOL bSelected = L_DispContainerIsCellSelected (hCon, nI, 0);
nRet = L_DispContainerSelectCell(hCon, nI, !bSelected, 0);
if(nRet != SUCCESS)
return nRet;
}
return SUCCESS;
}
#endif