InspectExternalReference

Introduced

v6.0

Description

Returns a comma-delimited string of all target paths of all ports using external references on the given target.

Scripting Syntax

oString = InspectExternalReference( Target );

Return Value

String

Parameters

Parameter Type Description
Target String Parameter value to retrieve.

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

GetExternalReferences UpdateExternalReference