Invokes a method on an OLE automation object and returns a value.
Argument
|
Character (C) or Numeric
(N)
|
Description
|
---|---|---|
in-OLE-method
|
C
|
specifies the OLE method name.
|
in-parm
|
C or N
|
provides a parameter to the OLE method.
|
out-value
|
C or N
|
contains the value returned by the OLE method.
|
length item2obj $ 200; call notify('oleobj', '_COMPUTE_', 'GetItem', 2, item2obj);
call send(oleobj, '_COMPUTE_', 'Cells', 2, 5, cellobj1); call send(cellobj1, '_SET_PROPERTY_', 'Value', 100);