virtual L_BOOL LAnnAutomation::IsHyperlinkMenuEnabled()
Gets a value that indicates whether the hyperlink menu item will be shown when you click the right mouse button in design mode.
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. |
Win32, x64.
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 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