L_AnnGetUserMode

Summary

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.

Syntax

#include "l_bitmap.h"

L_LTANN_API L_INT L_AnnGetUserMode(hObject, puMode)

Parameters

HANNOBJECT hObject

Handle to the annotation object.

L_UINT *puMode

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.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

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

Platforms

Win32, x64.

See Also

Functions

Topics

Example

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("Notice: User mode %d"), nAnnUserMode); 
   _tprintf(_T("%s"), szMessage); 
 
   return SUCCESS; 
} 

Help Version 22.0.2023.7.11
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.