LAnnAutomation::GetPolyFillMode

Summary

Determines how a Polygon annotation with crossing lines is filled.

Syntax

#include "ltwrappr.h"

virtual L_UINT LAnnAutomation::GetPolyFillMode()

Returns

The polygonal fill-mode constant. Possible fill mode values are:

Value Meaning
ANNPOLYFILL_WINDING [0] All pixels that are inside the resulting exterior lines are filled.
ANNPOLYFILL_ALTERNATE [1] The filled area includes the area between odd-numbered and even-numbered polygon sides on each scan line.
image\winding.gif

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

This example gets and updates the property of the object
passed by the caller

L_INT LAnnAutomation_GetPolyFillModeExample(LAnnAutomation  * pAnnObject) 
 
{ 
   L_INT nRet; 
 
   L_UINT PolyFillMode; /* Object's polygonal fill mode  
 */ 
 
   /* Change the fill mode */ 
 
   PolyFillMode = pAnnObject->GetPolyFillMode(); 
 
   if (PolyFillMode == ANNPOLYFILL_WINDING) 
   { 
      nRet = pAnnObject->SetPolyFillMode(ANNPOLYFILL_ALTERNATE,  0); 
      if(nRet != SUCCESS) 
         return nRet; 
   } 
 
   else 
   { 
      nRet = pAnnObject->SetPolyFillMode(ANNPOLYFILL_WINDING, 0); 
      if(nRet != SUCCESS) 
         return nRet; 
   } 
 
   return SUCCESS; 
} 

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.