LAnnPolygon::GetPolyFillMode
#include "ltwrappr.h"
virtual L_UINT LAnnPolygon::GetPolyFillMode(L_VOID)
Gets a value that indicates how a Polygon annotation with crossing lines is filled. This function is available in the Document/Medical Toolkits.
Returns
The polygonal fill-mode constant. Possible polygon 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. | 
Required DLLs and Libraries
| LTANN For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. | 
See Also
| Functions: | |
| Topics: | 
Example
L_VOID TestModifyAnn(LAnnPolygon L_FAR * pAnnObject)
{
   L_UINT PolyFillMode; /* Object's polygonal fill mode */
   /* Change the fill mode */
   PolyFillMode =  pAnnObject->GetPolyFillMode();
   if (PolyFillMode == ANNPOLYFILL_WINDING)
       pAnnObject->SetPolyFillMode(ANNPOLYFILL_ALTERNATE, 0);
   else
       pAnnObject->SetPolyFillMode(ANNPOLYFILL_WINDING, 0);
}