ScriptObject.parent Field

Definition

Stores a reference to the parent object.

This API supports the product infrastructure and is not intended to be used directly from your code.

protected: Microsoft::JScript::ScriptObject ^ parent;
protected Microsoft.JScript.ScriptObject parent;
val mutable parent : Microsoft.JScript.ScriptObject
Protected parent As ScriptObject 

Field Value

Remarks

The parent is the object to which the script object delegates requests for properties or methods that it does not implement itself. For example, when you create a NumberObject by using a NumberConstructor, the parent is a NumberPrototype.

Applies to

See also