L_PntGetClipRgn

#include "LtPnt.h"

L_LTPNT_API L_INT L_PntGetClipRgn(pPaint, phClipRgn)

Gets the current clipping region, set using L_PntSetClipRgn.

Parameters

pPAINTHANDLE pPaint

Pointer to a paint handle.

L_HRGN* phClipRgn

Pointer to a Windows region handle to be updated with the current clipping region.

Returns

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

Comments

The phClipRgn parameter is updated with a windows region, which is a snapshot of the current clipping region, used by the toolkit. The user is responsible for deleting this region.

Required DLLs and Libraries

See Also

Functions

Topics

Example

L_INT PntGetClipRgnExample(pPAINTHANDLE pPaint) 
{ 
   L_INT nRet; 
   HRGN hRgn, hClipRgn ; 
 
   /* create some region */ 
   hRgn = CreateRectRgn ( 0, 0, 100, 100 ) ; 
 
   /* Initiate the Paint toolkit */ 
   nRet = L_PntInit ( &pPaint ); 
   if ( SUCCESS != nRet) 
   { 
      return nRet; 
   } 
 
   /* get the current painting tools clip region */ 
   nRet = L_PntGetClipRgn ( pPaint, &hClipRgn) ; 
   if(nRet != SUCCESS) 
      return nRet; 
 
   /* combine the regions */ 
   CombineRgn ( hRgn, hClipRgn, hRgn, RGN_OR ) ; 
 
   /* set the painting tools new clip region */ 
   nRet = L_PntSetClipRgn ( pPaint, hRgn) ; 
   if(nRet != SUCCESS) 
      return nRet; 
 
   /* delete the regions */ 
   DeleteObject ( ( HRGN ) hRgn ) ; 
   DeleteObject ( ( HRGN ) hClipRgn ) ; 
   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 Digital Paint C API Help