Adds a new item to the target list for the specified hyperlinked vector object.
#include "ltwrappr.h"
L_INT LVectorObject::AddHyperlink(pTarget)
Pointer to a VECTORLINKDESC that determines how the toolkit will handle the hyperlink.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
Hyperlinked vector objects cause some action to take place when the end-user clicks on them. Each of these objects maintains a list of targets. That is, clicking on a hyperlinked vector object may cause several different things to occur. Depending on the target(s) and how the user specifies handling the target(s), the vector toolkit will act in response to the end-user's actions on that target.
A hyperlink must be added to a vector object using this function before it can be changed using the LVectorObject::SetHyperlink function.
L_INT LVectorObject__AddHyperlinkExample( LVectorObject *pVecObj, pVECTOROBJECT pTarget, L_INT & nCount)
{
L_INT nRet;
VECTORLINKDESC Link;
Link.bObject = TRUE;
Link.tar.vectorobject.target = *pTarget;
Link.tar.vectorobject.handling = VECTORLINKHANDLING_CURRENTWINDOW;
nRet = pVecObj->AddHyperlink( &Link );
if( SUCCESS != nRet )
{
return nRet;
}
nCount = pVecObj->GetHyperlinkCount( );
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