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

OLE2.Invoke_Char

Description

Gets a character value from an OLE2 Automation Object using the specified method.

Syntax


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

Parameters

Parameter Description
object An OLE2 Automation Object.
method The name of an OLE2 Automation method (function) that returns a character value.
Arglist The name of an argument List assigned to the OLE2.Create_Arglist Function.

Returns

A character value.

Example


 /*
** Get the character value for spell_obj.
*/
correct:=OLE2.Invoke_Char(spell_obj, 'spell', my_Arglist);