A script-enabled browser is required for this page to function properly.

OLE2.Invoke_Obj

Description

Gets an object type value from an OLE2 Automation Object.

Syntax


FUNCTION OLE2.Invoke_Obj
   (object   obj_type,
    method   VARCHAR2,
    Arglist  List_Type := 0)
RETURN OBJ_TYPE;

Parameters

Parameter Description
object An OLE2 Automation Object.
method The name of an OLE2 Automation method to invoke.
Arglist The name of an argument List assigned to the OLE2.Create_Arglist Function.

Returns

An OLE2 Automation Object.

Example


 /*
** Get the object type value for wp_obj.
*/
para_obj:=OLE2.Invoke_Obj(wp_obj, 'get_para', my_Arglist);