Arbortext IsoView > Programmer's Reference > Callout Functions > GetObjectCallout
  
GetObjectCallout
Returns the callout ID of the specified object (index 0 based) as BSTR.
Introduced with Arbortext IsoView 7.2.
Syntax
GetObjectCalloutobjectIDindex
Parameters:
objectID
Defines the object ID as BSTR.
index
Specifies the object index as long.
lObjCount = ivx1.Iso3GetObjectCount();

// for each object, we build a new line of the table
for ( n = 0; n < lObjCount; n++ )
{
// get ID and name of actual object
strObjID = ivx1.Iso3GetObjectIDByIndex(n);
lCltCount = ivx1.GetObjectCalloutCount(strObjID);
if ( lCltCount >= 1 )
{
strCallouts = "";
for ( m = 0; m < lCltCount; m++ )
{
strCltID = ivx1.GetObjectCallout(strObjID, m);
strCallouts = strCallouts + strCltID + ", ";
}
}
}