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

OLE2.List_Type

Description

Specifies a handle to an argument List.

Syntax


List   OLE2.LIST_TYPE;

Returns

TRUE, if OLE2 is supported on the platform; FALSE if it is not.

Example


...
  alist   OLE2.LIST_TYPE;
...
    alist := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(alist, );
    OLE2.ADD_ARG(alist, );
    ...

    wkbook := OLE2.INVOKE_OBJ(my_obj, 'method1', alist);
    ...