LAnnAutomation::IsHyperlinkMenuEnabled

Summary

Gets a value that indicates whether the hyperlink menu item will be shown when you click the right mouse button in design mode.

Syntax

#include "ltwrappr.h"

virtual L_BOOL LAnnAutomation::IsHyperlinkMenuEnabled()

Returns

Value Meaning
TRUE The hyperlink menu item will be shown in design mode when you right click on one or more objects.
FALSE The hyperlink menu item will not be shown.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

This example determines whether the automation hyperlink menu item is
enabled. If the menu item is enabled, then the example disables it. It the
menu item is disabled, the example enables it.

L_INT LAnnAutomation_IsHyperlinkMenuEnabledExample(LAnnAutomation  * pAnnAutomation) 
{  
   L_INT nRet; 
   L_BOOL bEnabled; 
 
 
   /* toggle display of HyperLink menu item */ 
 
   bEnabled = !pAnnAutomation->IsHyperlinkMenuEnabled(); 
 
   nRet = pAnnAutomation->SetHyperlinkMenuEnabled(bEnabled, 0);  
   if(nRet != SUCCESS) 
      return nRet; 
 
   return SUCCESS; 
} 

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

LEADTOOLS Raster Imaging C++ Class Library Help

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