Sets the container owner window.
#include "Ltwrappr.h"
L_INT LContainer::SetOwner (hWndOwner)
Handle of the window to set as the owner of the container.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
This example will set a new owner to the container.
L_INT LContainer_SetOwnerExample(HWND hwndNewOwner, LContainer lcont)
{
L_INT nRet ;
nRet = lcont.IsValid ();
if ( nRet == SUCCESS ) /* check the validity of container handle */
{
/* Set the window new owner window */
nRet = lcont.SetOwner (hwndNewOwner );
if(nRet != SUCCESS)
return nRet;
}
else
{
return nRet ;
}
return SUCCESS;
}