LAnnStamp::GetFillMode
#include "ltwrappr.h"
virtual L_UINT LAnnStamp::GetFillMode(L_VOID)
NOTE: |
THIS FUNCTION IS NOW INHERITED DIRECTLY FROM THE PARENT LANNOTATION CLASS. |
The fill mode of the annotation object. This function is available in the Document/Medical Toolkits.
Returns
The object's fill mode constant.Possible values of the fill mode 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: |
|
Topics: |
Example
void TestModifyAnn(LAnnStamp L_FAR * pAnnObject)
{
L_UINT FillMode; /* Object fill mode */
/* Set the fill mode to transparent, unless it already is */
FillMode = pAnnObject->GetFillMode();
if (FillMode == ANNMODE_TRANSPARENT)
MessageBox (NULL, TEXT("Already transparent"), TEXT("Notice"), MB_OK);
else
pAnnObject->SetFillMode(ANNMODE_TRANSPARENT, 0);
}