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

OLE2.Create_Arglist

Description

Creates an argument List you can pass to the OLE2 Automation server.

Syntax


FUNCTION OLE2.Create_Arglist
RETURN List_Type;

Returns

A handle to an argument List.

Example


 /* 
** Declare a variable of the type OLE2.List_Type
** then create the argument List Of that name
*/
  my_Arglist  OLE2.List_Type;
BEGIN
  my_Arglist := OLE2.Create_Arglist;
  OLE2.Add_Arg(my_Arglist, 'Sales Revenue');
END;