LAnnAutomation::SetAutoOptions

#include "ltwrappr.h"

virtual L_INT LAnnAutomation::SetAutoOptions(uFlags)

Sets options for the automation object.

Parameters

L_UINT uFlags

Flags that determine the options to set. Possible values are:

Value Meaning
ANNAUTO_TABBEDDIALOG Combine the dialog boxes that describe most of the object properties into one tabbed dialog box. Only dialog boxes that are not system dependent can be tabbed. The dialog boxes that are not tabbed are Font, Color, and File. If this flag is not set, the dialogs are displayed as in previous versions of LEADTOOLS.
ANNAUTO_REVERSEEDITKEYS Reverse the behavior of the Enter key and the Ctrl + Enter key combination for Text, Note and Push Pin objects. By default, for the Text, Note and Push pin objects, pressing the Enter key ends the text input, while the Ctrl + Enter key combination allows the user to add a new line to the text input. Setting this flag reverses these behaviors.

Returns

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

Comments

By default, the dialogs are combined in a tabbed dialog box.

If a tabbed dialog box is used, the caption of the dialog box will be one of the following:

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

//This example uses the following member variables: // m_AnnotationWindow should be created and initialized prior to the example //This example toggles the tabbed dialog box behavior

L_INT LAnnAutomation_SetAutoOptionsExample(LAnnotationWindow m_AnnotationWindow)  
{ 
   L_INT nRet; 
   L_UINT uFlags; 
 
   nRet = m_AnnotationWindow.GetAutomationObject().GetAutoOptions(&uFlags); 
   if(nRet != SUCCESS) 
      return nRet; 
   uFlags = uFlags ? 0 : ANNAUTO_TABBEDDIALOG; 
   nRet = m_AnnotationWindow.GetAutomationObject().SetAutoOptions(uFlags); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   return SUCCESS; 
} 

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

LEADTOOLS Raster Imaging C++ Class Library Help