#include "ltwrappr.h"
virtual L_INT LAnnAutomation::SetAutoDrawEnabled(bEnable=TRUE)
L_BOOL bEnable; |
flag that indicates whether to enable automated drawing |
Enables or disables automated drawing in design mode.
| Parameter | Description | |
| bEnable | Flag that indicates whether the left mouse button is used to draw automated annotation objects in design mode. Possible values are: | |
| Value | Meaning | |
| TRUE | The left mouse button is enabled for automated drawing. | |
| FALSE | The left mouse button is disabled for automated drawing. | |
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
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.
This example gets and updates the property of the automation object passed by the caller
L_INT LAnnAutomation_SetAutoDrawEnabledExample(LAnnAutomation * pAnnObject){L_INT nRet =SUCCESS;L_BOOL bEnable; /* Is drawing enabled? *//* Disable automated drawing, unless it is already disabled */bEnable = pAnnObject->IsAutoDrawEnabled();if (bEnable == FALSE)MessageBox (NULL, TEXT("Drawing is already disabled"), TEXT("Notice"), MB_OK);elsenRet = pAnnObject->SetAutoDrawEnabled(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
