Introduced
6.0
Description
Returns a comma-delimited string of all target paths of all ports using external references on the given target.
Scripting Syntax
InspectExternalReference( Target )
Parameters
|
Parameter |
Type |
Description |
|
Target |
Parameter value to retrieve. |
Return Value
Examples
JScript Example
/*
Demonstrates how to use InspectExternalReference to access all paths of external references
*/
var coll = GetExternalReferences();
for ( var i=0; i<coll.Count; i++ ) {
var paths = InspectExternalReference( coll(i) );
Application.LogMessage( paths );
}
See Also
SOFTIMAGE|XSI v6.01