FunctionPrototype.apply(Object, Object, Object) 方法

定义

调用此对象所表示的函数,同时将指定参数对象转换为参数的数组(如有必要)。

此 API 支持产品基础结构,不能在代码中直接使用。

public:
 static System::Object ^ apply(System::Object ^ thisob, System::Object ^ thisarg, System::Object ^ argArray);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.Function_apply)]
public static object apply (object thisob, object thisarg, object argArray);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.Function_apply)>]
static member apply : obj * obj * obj -> obj
Public Shared Function apply (thisob As Object, thisarg As Object, argArray As Object) As Object

参数

thisob
Object

此方法所作用于的对象。

thisarg
Object

当前默认范围。 with 语句范围包含的对象,或全局范围。

argArray
Object

要以 ArgumentsObjectArrayObject 形式传递给函数的参数。

返回

Object

对此对象所表示函数的调用的返回值。

属性

适用于

另请参阅