LVectorObject::GotoHyperlink

#include "ltwrappr.h"

L_INT LVectorObject::GotoHyperlink(uIndex)

L_UINT32 uIndex;

/* index to an item in the target list */

Activates the specified target from the target list of the hyperlinked vector object.

Parameter

Description

uIndex

Index to an item in the target list. The target specified by this index will be used and activated.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

This function fails if the object is not a hyperlinked vector object.

Required DLLs and Libraries

LVKRN

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

See Also

Functions:

LVectorObject::AddHyperlink, LVectorObject::SetHyperlink, LVectorObject::GetHyperlink, LVectorObject::GetHyperlinkCount

Topics:

Vector Images: Hyperlink Object

 

Hyperlink Objects

Example

L_INT JumpToLink( LVectorObject *pVecObj ) 
{
   return pVecObj->GotoHyperlink( 0 ); 
}