Arbortext IsoView > Programmer's Reference > Callout Functions > GetCalloutLabel
  
GetCalloutLabel
Returns the label of the callout with the specified callout ID as BSTR.
Introduced with Arbortext IsoView 7.2.
Syntax
GetCalloutLabelcalloutID
Parameters:
calloutID
Defines the callout object ID as BSTR.
lCltCount = ivx1.GetCalloutCount();

for ( n = 0; n < lCltCount; n++ )
{
// get ID and label of actual callout
strID = ivx1.GetCallout(n);
strObjLabel = ivx1.GetCalloutLabel(strID);
}