LAnnotationWindow::SetWndHandle

Summary

Sets the handle of the window to be used by the bitmap window.

Syntax

#include "ltwrappr.h"

L_INT LAnnotationWindow::SetWndHandle(hWnd)

Parameters

HWND hWnd

Handle of the window to be used by the bitmap window.

Returns

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

Comments

The passed window handle will be attached to the class object. If you pass NULL then the previously attached window will be detached from the class object.

If the class object has a created window using LAnnotationWindow::CreateWnd function then this function will return an error code.

If the passed window handle is not NULL, then this function will also initialize the annotation automation engine. Otherwise the automation engine will be destroyed.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Example

L_INT LAnnotationWindow_SetWndHandleExample(LBitmapWindow& BmpWnd, HWND hWnd) 
{ 
   L_INT nRet; 
   //Attach 
   nRet = BmpWnd.SetWndHandle(hWnd); 
    
   //Deattch  
   BmpWnd.SetWndHandle(NULL); 
 
   return nRet; 
	 
} 
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.