Gets a character value from an OLE2 Automation Object using the specified method.
FUNCTION OLE2.Invoke_Char
(object obj_type,
method VARCHAR2,
Arglist List_Type := 0)
RETURN VARCHAR2;
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. |
/*
** Get the character value for spell_obj.
*/
correct:=OLE2.Invoke_Char(spell_obj, 'spell', my_Arglist);