LAnnAutomation::IsAutoMenuEnabled

#include "ltwrappr.h"

virtual L_BOOL LAnnAutomation::IsAutoMenuEnabled(L_VOID)

Gets a value that indicates whether the automated menus for annotation are enabled. This function is available in the Document/Medical Toolkits.

Returns

TRUE

Menus are enabled

FALSE

Menus are disabled.

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:

LAnnAutomation::SetAutoMenuEnabled, LAnnAutomation::SetAutoDrawEnabled, LAnnAutomation::SetAutoText, Class Members, LAnnotation::SetAutoSnapCursor, LAnnotation::GetAutoSnapCursor

Topics:

Annotation Functions: Implementing Automation

 

Annotation Functions: Working with the Toolbar

 

Implementing Annotations

 

Automated User Interface for Annotations

Example

/* This example gets and updates the property of the automation object passed by the caller */
void TestModifyAnn(LAnnAutomation L_FAR * pAnnObject)
{
   L_BOOL bEnable; /* Are menus enabled? */
   /* Disable the menus, unless they are already disabled */
   pAnnObject->IsAutoMenuEnabled();
   if (bEnable == FALSE)
      MessageBox (NULL, TEXT("Menus are already disabled"), TEXT("Notice"), MB_OK);
   else
      pAnnObject->SetAutoMenuEnabled(FALSE);
}