LAnnText::GetFillMode

#include "ltwrappr.h"

virtual L_UINT LAnnText::GetFillMode()

NOTE:

This function is now inherited directly from the parent LAnnotation class.

Gets the fill mode of the annotation object.

Returns

The object's fill mode constant. Possible values are:

ANNMODE_TRANSPARENT [0]

ANNMODE_TRANSLUCENT [1]

ANNMODE_OPAQUE [2]

Comments

To see the possible fill modes and patterns, refer to Illustration of Fill Options for Annotations.

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:

Class Members

Topics:

Annotation Functions: Object Properties

Example

L_INT LAnnText_GetFillModeExample(LAnnText  * pAnnObject)
{
	L_INT nRet =SUCCESS;
   L_UINT uFillMode; /* Object fill mode */
   /* Set the fill mode to transparent, unless it already is */
   nRet = pAnnObject->GetFillMode(&uFillMode, NULL);
   if (nRet != SUCCESS)
      return nRet;
   if (uFillMode == ANNMODE_TRANSPARENT)
      MessageBox (NULL, TEXT("Already transparent"), TEXT("Notice"), MB_OK);
   else
      nRet = pAnnObject->SetFillMode(uFillMode, ANNMODE_TRANSPARENT, 0);
	return nRet;
}