GetReferencedValues

(Engine-Level Function)

Description: Collects all dynamically referenced values in the call tree rooted at the parameter and returns them in an array. Returns Invalid if none are found.
Warning This function should be used only by advanced programmers.
Returns: Array
Usage: Script Only.
Function Groups: Variable Functions
Related to:  
Format: GetReferencedValues(Object)
Parameters:  
Object
Required. The object for which referenced values are to be found.
Comments:

Examples:

{ Get an array of pointers to all values scoped-to in the call tree rooted at PageObj. }
    ReferencedVals = GetReferencedValues(PageObj);