Activates the specified target from the target list of the hyperlinked vector object.
#include "ltvkrn.h"
L_LVKRN_API L_INT L_VecGotoHyperlink(pVector, pObject, uIndex)
Pointer to the vector handle.
Pointer to a VECTOROBJECT structure that references the vector object for which to activate the hyperlink.
Index to an item in the target list. The target specified by this index will be used and activated.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
This function fails if pObject is not a hyperlinked vector object.
L_LTVKRNTEX_API L_INT VecGotoHyperlinkExample(
pVECTORHANDLE pVector,
pVECTOROBJECT pVecObj)
{
return L_VecGotoHyperlink ( pVector, pVecObj, 0 );
}