L_ContainerSetOwner

#include "LtCon.h"

L_LTCON_API L_INT L_ContainerSetOwner(pContainer, hWndOwner)

Sets the window that owns the container.

Parameters

pCONTAINERHANDLE pContainer

Pointer to a container handle.

L_HWND hWndOwner

Handle of the window to set as the owner of the container.

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 example will set a new owner to the container.

L_INT ContainerSetOwnerExample(pCONTAINERHANDLE pContainer, 
                                               HWND             hwndNewOwner) 
{ 
   L_INT nRet; 
 
   nRet = L_ContainerIsValid ( pContainer ); 
   if (SUCCESS == nRet ) /* check the validity of container handle */ 
   { 
      /* Set the window new owner window */ 
      nRet = L_ContainerSetOwner ( pContainer, hwndNewOwner ); 
   } 
   return nRet; 
} 

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

LEADTOOLS Container and Automation C API Help