L_DispContainerSelectCell

#include "ltivw.h"

L_LTIVW_API L_INT L_DispContainerSelectCell(hCellWnd, bSelect, uFlags)

Selects or deselects the cell at the specified index.

Parameters

L_HWND hCellWnd

A handle to the window that represents the cell on which the function's effect will be applied.

L_BOOL 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.

L_UINT uFlags

Reserved for future use. Pass 0.

Returns

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

Required DLLs and Libraries

See Also

Functions

Topics

Example

This procedure inverses the selection.

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; 
} 

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

LEADTOOLS Medical Image Viewer C API Help