GetExternalReferences

Introduced

v6.0

Description

Finds all objects that use external references.

Scripting Syntax

oReturn = GetExternalReferences();

Return Value

Returns an XSICollection object that contains the found objects.

Examples

JScript Example

/*

	Demonstrates how to use GetExternalReferences to get all objects using external references

*/

var coll = GetExternalReferences();

for ( var i=0; i<coll.Count; i++ ) {

	Application.LogMessage( coll(i) );

}

See Also

InspectExternalReference UpdateExternalReference