共用方式為


FunctionPrototype.call(Object, Object, Object[]) 方法

定義

呼叫這個物件表示的函式。

此 API 支援此產品基礎結構,但無法直接用於程式碼之中。

public:
 static System::Object ^ call(System::Object ^ thisob, System::Object ^ thisarg, ... cli::array <System::Object ^> ^ args);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject | Microsoft.JScript.JSFunctionAttributeEnum.HasVarArgs, Microsoft.JScript.JSBuiltin.Function_call)]
public static object call (object thisob, object thisarg, params object[] args);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject | Microsoft.JScript.JSFunctionAttributeEnum.HasVarArgs, Microsoft.JScript.JSBuiltin.Function_call)>]
static member call : obj * obj * obj[] -> obj
Public Shared Function call (thisob As Object, thisarg As Object, ParamArray args As Object()) As Object

參數

thisob
Object

這個方法執行位置的物件。

thisarg
Object

目前的預設範圍。 可能是 with 陳述式範圍的內含物件,或是全域範圍。

args
Object[]

要做為陣列傳遞至函式的引數。

傳回

Object

呼叫這個物件所表示之函式的傳回值。

屬性

適用於

另請參閱