#include "ltwrappr.h"
virtual L_BOOL LAnnAutomation::IsAutoMenuEnabled()
Gets a value that indicates whether the automated menus for annotation are enabled.
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. |
Win32, x64.
Functions: |
LAnnAutomation::SetAutoMenuEnabled, LAnnAutomation::SetAutoDrawEnabled, LAnnAutomation::SetAutoText, Class Members, LAnnotation::SetAutoSnapCursor, LAnnotation::GetAutoSnapCursor |
Topics: |
|
|
|
|
|
|
This example gets and updates the property of the automation object passed by the caller
L_INT LAnnAutomation_IsAutoMenuEnabledExample(LAnnAutomation * pAnnObject)
{
L_INT nRet = SUCCESS;
L_BOOL bEnable; /* Are menus enabled? */
/* Disable the menus, unless they are already disabled */
bEnable= pAnnObject->IsAutoMenuEnabled();
if (bEnable == FALSE)
MessageBox (NULL, TEXT("Menus are already disabled"), TEXT("Notice"), MB_OK);
else
nRet = pAnnObject->SetAutoMenuEnabled(FALSE);
return nRet;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET