Arbortext IsoView > Programmer's Reference > Callout Functions > GetCalloutTarget
  
GetCalloutTarget
Returns the object ID of the specified target object (index 0 based) as BSTR.
Introduced with Arbortext IsoView 7.2.
Syntax
GetCalloutTargetcalloutIDindex
Parameters:
calloutID
Defines the callout object ID as BSTR.
index
Specifies the target object index as long.
lCltCount = ivx1.GetCalloutCount();

for ( n = 0; n < lCltCount; n++ )
{
// get ID and label of actual callout
strID = ivx1.GetCallout(n);
// retrieve objects linked to callout
lObjCount = ivx1.GetCalloutTargetCount(strID);
strObjLinks = "";
for ( m = 0; m < lObjCount; m++ )
{
strObjID = ivx1.GetCalloutTarget(strID, m);
strObjLinks = strObjLinks + strObjID + ", ";
}
}