#include "l_bitmap.h"
L_LTANN_API L_INT L_AnnGetUserMode(hObject, puMode)
Gets a value indicating the user mode of the specified annotation object. The user mode can be for interactive design of an annotation object or for run-time use.
Handle to the annotation object.
Address of the variable to be updated with the annotation object's current user mode. Possible values for the user mode are:
Value | Meaning |
---|---|
ANNUSER_DESIGN | [0] Design mode. Used for creating objects. |
ANNUSER_RUN | [1] Run mode. Used for viewing and/or activating objects. |
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
Before calling this function, you must declare a variable of data type L_UINT. Then, pass the address of the variable in the puMode
parameter. This function will update the variable with the annotation object's user mode constant.
Required DLLs and Libraries
Win32, x64.
This example gets the current user mode and assigns it to a global variable.
L_INT AnnGetUserModeExample(HANNOBJECT hContainer, /* Container annotation object */
L_UINT nAnnUserMode) /* Automation user mode, design or run */
{
L_INT nRet;
L_TCHAR szMessage[80];
nRet = L_AnnGetUserMode(hContainer, &nAnnUserMode);
if(nRet != SUCCESS)
return nRet;
wsprintf(szMessage, TEXT("User mode %d"), nAnnUserMode);
MessageBox(NULL, szMessage, TEXT("Notice"), MB_OK);
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document