Oracle® COM Automation Feature Developer's Guide 11g Release 2 (11.2) for Microsoft Windows Part Number E10591-05 |
|
|
PDF · Mobi · ePub |
This chapter describes aspects of the programming interface for Oracle COM Automation Feature.
This chapter contains these topics:
Because Microsoft COM Automation uses COM Automation data types, and Oracle COM Automation Feature uses either PL/SQL or Java data types, Oracle COM Automation Feature must convert the data that it receives and pass it to the COM Automation object. Similarly, Oracle COM Automation Feature must pass the data that it receives from the COM Automation object and convert it.
Table 3-1 shows the mapping between PL/SQL data types and COM Automation data types.
This guide follows a convention where COM Automation data types are prefaced by an initial p when used as IN
OUT
or OUT
parameters. Data types without the initial p are IN
parameters.
Table 3-1 PL/SQL to COM Automation Data Types
PL/SQL Data Type | COM Automation Data Type |
---|---|
|
|
|
|
|
|
|
|
|
|
Note:
Oracle restricts aCY
and pCY
value to be between -9999999999.9999 and 9999999999.9999.Table 3-2 lists the supported COM Automation data types and related mappings to Java data types.
All data type mapping applies to properties, arguments, and return values, except void
, which applies only to return values.
Table 3-2 Java to COM Automation Data Types
Java Data Type | COM Automation Data Type |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
HRESULT
error codes are provided by the Microsoft Windows API.
An HRESULT
is a COM error code of the hexadecimal form 0x800nnnnn. However, it has the decimal form -214nnnnnnn. For example, passing an invalid object name when creating a COM object causes the HRESULT
of -2147221005 to be returned, which is 0x800401f3 in hexadecimal form.
For complete information about the HRESULT
return code, refer to the Microsoft documentation.
See Also:
"Microsoft COM Automation Errors" for additional informationThe PL/SQL APIs return an integer return code. The return code is 0
when successful, or a nonzero value of HRESULT
when an error occurs.
See Also:
"GetLastError" for additional information about how to interpret the return codes from Oracle COM Automation FeatureOracle COM Automation for Java uses standard Java exception mechanisms. Specifically, a Java exception class, oracle.win.com.COMException
, is introduced to represent COM errors.
This exception is thrown by the Automation
Java class when an error occurs.
The error information provided by this exception is similar to that provided by the PL/SQL API GetLastError
function.
Note:
TheHRESULT
data member has the same meaning as the value of HRESULT
returned by the PL/SQL functions.If the COM error is DISP_E_EXCEPTION
as indicated by the excepInfo
data member, COMException
uses the source
, description
, helpfile
, and helpid
data members. Otherwise, these data members are not valid.
The COMException
writes an error message representing the COM error to the errmsg
data member.
Table 3-3 lists the COMException
data members and their descriptions.
Table 3-3 COMException Data Members
Member | Description |
---|---|
|
is an |
|
is the textual representation of |
|
is the |
|
is the error description. |
|
is the fully qualified path name of the |
|
is the help context ID of a topic within the |
|
is |
This example demonstrates the COMException
exception.
try { // Some code that might throw a COMException exception. } catch(COMException e) { System.out.println(e.toString()); if(e.excepInfo) { System.out.println(e.source); System.out.println(e.description); System.out.println(e.helpfile); System.out.println(e.helpid); } }
This section discusses the required information and the general steps to build a solution using Oracle COM Automation Feature.
Review the following information about the COM objects that you intend to use:
You must determine the Program ID of the COM object. The Program ID, or progID, is a descriptive string that maps to the globally unique identifier (GUID), a hexadecimal number that uniquely identifies a COM object.
The following string is an example of a progID
:
Excel.Worksheet.1
Use the progID
with the API that instantiates the COM object.
You must be aware of the types of properties and methods that are exposed through the COM object's IDispatch
interface. Usually, the ISV provides documentation describing the names and data type of the object's properties and the prototypes of the object's methods. Properties are referred to by a descriptive string, such as xpos
or ypos
. A property can be any standard COM Automation data type, such as INT
or BSTR
. The GetProperty
and SetProperty
APIs take the property name and a variable of the appropriate data type. Methods are referred to by a descriptive string, such as InsertChart
. A method takes a set of parameters that are of different COM Automation data types and returns a COM Automation data type.
The following is an example of a COM Automation method prototype in COM Interface Definition Language (IDL) grammar:
[id(0x6003000)] long Post([in, out] long* lngAccountNo, [in, out] long* lngAmount, [in, out] BSTR* strResult);
Interfaces define object methods and properties. COM IDL is used to specify interfaces that are defined on COM objects.
Microsoft provides a tool called the OLE/COM Object Viewer with Microsoft Visual Studio for browsing the properties and methods of COM objects on a local system. This tool enables you to quickly and easily determine the properties and methods that each COM object exposes. See Figure 3-1 for an example.
In a typical use of Oracle COM Automation Feature, you design a Java class or PL/SQL block to create and manipulate a COM object. The class or code block performs the following steps:
Creates the COM object as follows:
In PL/SQL, using CreateObject
In Java, using a constructor or the Create
method
Manipulates the COM object calling the following APIs:
GetProperty
to get a property value
SetProperty
to set a property value to a new value
Calls Invoke
to call a method
To prepare for the Invoke
call, you use InitArg
and SetArg
to package the argument to be sent to the COM Automation method.
Calls GetLastError
in PL/SQL to get the most recent error information
Destroys the object using DestroyObject
in PL/SQL or Destroy
in Java
This section lists and then describes the APIs available for Oracle COM Automation Feature.
This section describes the PL/SQL APIs for manipulating COM objects using the COM Automation interface. Each of the following PL/SQL stored procedures resides in the package ORDCOM
.
This API instantiates a COM object in a COM Automation server.
FUNCTION CreateObject(progid VARCHAR2, reserved BINARY_INTEGER, servername VARCHAR2, objecttoken OUT BINARY_INTEGER) RETURN BINARY_INTEGER;
The created COM Automation object is freed with a corresponding call to DestroyObject
. This nullifies the internal representation of the object in the Oracle COM Automation Feature and releases all interfaces associated with the object.
This function returns 0
when successful, or a nonzero value for HRESULT
when an error occurs.
HRESULT BINARY_INTEGER; applicationToken BINARY_INTEGER:=-1; HRESULT :=ORDCOM.CreateObject('Excel.Application', 0, '', applicationToken); IF (HRESULT!=0) THEN dbms_output.put_line(HRESULT); END IF;
This API destroys a created COM Automation object.
FUNCTION DestroyObject(objecttoken BINARY_INTEGER) RETURN BINARY_INTEGER;
Where | Is |
---|---|
objecttoken |
the object token of a COM Automation object previously created by CreateObject . |
Calling DestroyObject
nullifies the internal representation of the object in the Oracle COM Automation Feature and releases all interfaces associated with the object.
This function returns 0
when successful, or a nonzero value of HRESULT
when an error occurs.
HRESULT BINARY_INTEGER; applicationToken BINARY_INTEGER:=-1; /* Assume applicationToken is initialized. */ HRESULT:=ORDCOM.DestroyObject(applicationToken); IF (HRESULT!=0) THEN dbms_output.put_line(HRESULT);
This API obtains the COM Automation error information about the last error that occurred.
FUNCTION GetLastError(source OUT VARCHAR2, description OUT VARCHAR2, helpfile OUT VARCHAR2, helpid OUT BINARY_INTEGER) RETURN BINARY_INTEGER;
Where | Is |
---|---|
source |
the source of the error information. If specified, it must be a local CHAR or VARCHAR variable. The return value is truncated to fit the local variable if necessary. |
description |
the description of the error. If specified, it must be a local CHAR or VARCHAR variable. The return value is truncated to fit the local variable if necessary. |
helpfile |
the Help file for the COM Automation object. If specified, it must be a local CHAR or VARCHAR variable. The return value is truncated to fit the local variable if necessary. |
helpid |
the Help file context ID. If specified, it must be a local INT variable. |
Each call to an Oracle COM Automation Feature API (except GetLastError
) resets the error information, so that GetLastError
obtains error information only for the most recent Oracle COM Automation Feature API call. Because GetLastError
does not reset the last error information, it can be called multiple times to get the same error information.
This function returns 0
when successful, or a nonzero value of HRESULT
when an error occurs.
See "Microsoft COM Automation Errors" for a description of the types of errors that can be returned by this function.
HRESULT BINARY_INTEGER; applicationToken BINARY_INTEGER:=-1; error_src VARCHAR2(255); error_description VARCHAR2(255); error_helpfile VARCHAR2(255); error_helpID BINARY_INTEGER; HRESULT:=ORDCOM.CreateObject('Excel.Application', 0, '', applicationToken); IF (HRESULT!=0) THEN ORDCOM.GetLastError(error_src, error_description, error_helpfile, error_helpID); dbms_output.put_line(error_src); dbms_output.put_line(error_description); dbms_output.put_line(error_helpfile); END IF;
This API returns the property value of a COM Automation object.
FUNCTION GetProperty(objecttoken BINARY_INTEGER, propertyname VARCHAR2, argcount BINARY_INTEGER,
propertyvalue OUT any_PL/SQL_data type) RETURN BINARY_INTEGER;
Where | Is |
---|---|
objecttoken |
the object token of a COM object previously created by CreateObject . |
propertyname |
the property name of the COM object to return. |
argcount |
the index of the property array. If the property is not an array, then the developer should specify 0 . |
propertyvalue |
the returned property value. The returned property type depends on the COM Automation data type that is returned. You must pass the PL/SQL data type that corresponds to the COM Automation data type of the COM Automation property. Otherwise, the COM Automation Feature will not properly convert the COM Automation data type. |
any_PL/SQL_data type |
any data type supported by COM Automation Feature. |
If the property returns a COM object, then you must specify a local variable of data type BINARY_INTEGER
for the propertyvalue
parameter. An object token is stored in the local variable, and this object token can be used with other COM Automation stored procedures.
When the property returns an array, if propertyvalue
is specified, then it is set to NULL
.
This function returns 0
when successful, or a nonzero value of HRESULT
when an error occurs.
/* * This is an excerpt from a Microsoft Excel application. */ HRESULT BINARY_INTEGER; ChartObject BINARY_INTEGER := -1; ChartToken BINARY_INTEGER := -1; /* Assume ChartObject is initialized. */ HRESULT := ORDCOM.GetProperty(ChartObject, 'Chart', 0, ChartToken); IF (HRESULT!=0) THEN dbms_output.put_line(HRESULT); END IF;
This API sets a property of a COM Automation object to a new value.
FUNCTION SetProperty(objecttoken BINARY_INTEGER, propertyname VARCHAR2, newvalue any_PL/SQL_data type, data type VARCHAR2) RETURN BINARY_INTEGER;
Where | Is |
---|---|
objecttoken |
the object token of a COM Automation object previously created by CreateObject . |
propertyname |
the property name of the COM object to set to a new value. |
newvalue |
the new value of the property. It must be a value of the appropriate data type. |
data type |
the explicitly specified data type of the value passed in. The available data types are:
|
any_PL/SQL_data type |
any data type supported by COM Automation Feature. |
This function returns a 0
when successful, or a nonzero value of HRESULT
when an error occurs.
/* * This is an excerpt from a Microsoft Excel application. */ HRESULT BINARY_INTEGER; RangeToken BINARY_INTEGER := -1; /* Assume RangeToken is initialized. */ HRESULT := ORDCOM.SetProperty(RangeToken, 'Value', 'EmpNo', 'BSTR'); IF (HRESULT!=0) THEN dbms_output.put_line(HRESULT); END IF;
This API initializes the parameter set passed to an Invoke
call.
PROCEDURE InitArg();
The InitArg
call initializes the parameter set. After InitArg
has been called, a SetArg
call sets the first parameter to the specified value. A second SetArg
call sets the second parameter in the parameter list. Subsequent calls set the nth parameters in the parameter list, where n is the number of times SetArg
has been called after an InitArg
call. Another call to InitArg
resets the argument list and a call to SetArg
sets the first parameter again.
See "Invoke" for sample code.
InitOutArg
must be called after a COM method is invoked in preparation for getting the values of OUT
and IN
OUT
parameters using GetArg
. After calling InitOutArg
, the first call to GetArg
gets the value for the first OUT
or IN
OUT
parameter, the second call to GetArg
gets the value for the second OUT
or IN
OUT
parameters, and so on. Calling InitOutArg
again restarts this process.
PROCEDURE InitOutArg();
See the section on SetArg
data type strings in "SetArg" for information about IN
and OUT
parameters.
See "Invoke" for sample code.
Gets the argument of OUT
and IN
OUT
parameters after the COM method has been invoked.
PROCEDURE GetArg(data OUT any_PL/SQL_data type, type VARCHAR2);
Where | Is |
---|---|
data |
the value of the OUT or IN OUT parameter after the COM method has been invoked. |
type |
the COM Automation data type of the parameter. |
The available data types are:
|
|
any_PL/SQL_data type |
any data type supported by COM Automation Feature. |
See the section on SetArg
data type strings in "SetArg" for information about IN
and OUT
parameters.
See "Invoke" for sample code.
Used to construct the parameter list for the next Invoke
call.
SetArg
sets a parameter's value to be passed by value.
PROCEDURE SetArg(paramvalue any_PL/SQL_data type, data type VARCHAR2);
Where | Is |
---|---|
paramvalue |
the value of the parameter to be passed to an Invoke call. The parameter set is the nth parameter in the parameter list, where n is the number of times SetArg has been called after an InitArg call. |
data type |
the explicitly specified data type for the parameters.
Those data types prefaced by an initial |
Those data types without the initial p are IN parameters. The available data types are:
|
|
|
|
|
|
|
|
any_PL/SQL_data type |
any data type supported by COM Automation Feature. |
Each SetArg
procedure sets the nth parameter value. The InitArg
call initializes the parameter set. After InitArg
has been called, a SetArg
call sets the first parameter to the specified value. A second SetArg
call sets the second parameter in the parameter list. Subsequent calls set the nth parameters in the parameter list, where n is the number of times SetArg
has been called after an InitArg
call. Another call to InitArg
resets the argument list and a call to SetArg
sets the first parameter again.
Data types without the initial p are IN
parameters. Those data types prefaced by an initial p are IN
OUT
or OUT
parameters.
See "Invoke" for sample code.
This API calls a method of a COM Automation object. This function uses the parameter list, previously created by the calls to InitArg
and SetArg
as input for the COM Automation method.
FUNCTION Invoke(objecttoken BINARY_INTEGER, methodname VARCHAR2, argcount BINARY_INTEGER,
returnvalue OUT any_PL/SQL_data type) RETURN BINARY_INTEGER;
Where | Is |
---|---|
objecttoken |
the object token of a COM Automation object previously created by CreateObject . |
methodname |
the method name of the COM Automation object to call. |
argcount |
the number of arguments passed to the COM Automation object method. |
returnvalue |
the return value of the method of the COM Automation object. If specified, it must be a local variable of the appropriate data type. |
any_PL/SQL_data type |
any data type supported by COM Automation Feature. |
If the return value of the function is a COM object, then the developer must specify a local variable of data type BINARY_INTEGER
for the returnvalue
parameter. An object token is stored in the local variable, and this object token can be used with other Oracle COM Automation Feature APIs.
This function returns 0
when successful, or a nonzero value of HRESULT
when an error occurs.
/* * Following is the IDL definition of the COM Automation method * being called: * * HRESULT TestOutArg([in, out] short *x1, * [in] short x2, * [out] short *x3, * [out, retval] short *x4); */ HRESULT BINARY_INTEGER := -1; applicationToken BINARY_INTEGER := -1; x1 DOUBLE PRECISION := 12; x2 DOUBLE PRECISION := 7; x3 DOUBLE PRECISION := 0; x4 DOUBLE PRECISION := 0; /* Assume applicationToken is initialized. */ ORDCOM.InitArg(); ORDCOM.SetArg(x1, 'pI2'); ORDCOM.SetArg(x2, 'I2'); ORDCOM.SetArg(x3, 'pI2'); HRESULT := ORDCOM.Invoke(applicationToken, 'TestOutArg', 3, x4); IF (HRESULT!=0) THEN dbms_output.put_line(HRESULT); END IF; ORDCOM.InitOutArg(); ORDCOM.GetArg(x1, 'pI2'); ORDCOM.GetArg(x3, 'pI2');
This section describes the Java APIs for manipulating COM objects using the COM Automation interface. These APIs are found in the Automation
and Currency
Java classes.
The Automation
Java class provides access to COM objects that support COM Automation. With this Java class, you can create a COM object and obtain a pointer to the IDispatch
interface for the COM object. You can then get and set properties on the COM object, as well as invoke methods (with or without arguments) on the COM object. This class provides a wrapper for the COM object, so there is no direct access to the COM object or to its IDispatch
interface.
The Currency
Java class represents the CURRENCY COM Automation data type. CURRENCY is a an 8-byte number where the last four digits represent the fractional part of the value. For example, the number 12345 actually represents the value 1.2345. CURRENCY has a range of (+/-)922337203685477.5807.
COM object interface reference counting is handled internally, and IUnknown::AddRef(
) and IUnknown::Release()
are not exposed. The user cannot explicitly address COM object interfaces. The lifetime of a particular COM object starts when the associated Java constructor or Create method is invoked, and it is released when the associated Destroy method is invoked.
Because the default constructor does not create a COM object, there are two approaches to creating a COM object:
Instantiate the Java object using the default constructor, and call one of the Create methods. Which Create
method you use depends on whether you want to specify the server name. Later, you must call the Destroy method to free the COM object.
The Create
method can be called at any time, but if a COM object was previously created through one of the nondefault constructors or the Create
method, then you must first call the Destroy
method.
Instantiate the Java object using a nondefault constructor. Which nondefault constructor you use depends on whether you want to specify the server name. Later, you must call the Destroy method to free the COM object.
All COM errors are mapped to Java exceptions. Users can catch COM object errors through the Java exception handling mechanism.
Note:
Oracle COM Automation Feature for Java does not allow in-process COM Automation servers. Developers can usedllhost
to support in-process servers.This API creates a COM object.
public Automation() public Automation(String progID) public Automation(String progID, String serverName)
The default constructor public Automation()
does nothing. It is used with a Create method.
Using a constructor that takes only the progID
parameter forces Oracle COM Automation Feature to check the registry for the location of the COM object. Registry information indicates whether the COM object is local or remote.
COM Automation objects created using the nondefault constructors are freed with a corresponding call to Destroy. This nullifies the internal representation of the objects in Oracle COM Automation Feature and releases all interfaces associated with the objects.
Oracle COM Automation Feature for Java does not allow in-process COM Automation servers. Developers can use dllhost
to support in-process servers.
The COMException
exception is thrown if an error occurs.
The following code sample demonstrates the nondefault constructors.
// Use the registry to determine where to create the COM object. Automation word = new Automation("Word.Basic"); // Create the COM object on the specified server. Automation excel = new Automation("Excel.Application", "\\ServerName"); // Free the COM objects. word.Destroy(); excel.Destroy();
This API instantiates a COM object in a COM Automation server.
public void Create(String progID) public void Create(String progID, String serverName)
Where | Is |
---|---|
progID |
the programmatic identifier (progID) of the COM Automation object to create. This character string describes the class of the COM Automation object and has the following form:
|
serverName |
the name of the remote DCOM server on which the COM object is being instantiated. |
Passing a specified name forces Oracle COM Automation Feature to attempt to instantiate the COM object on a remote computer. |
The COM Automation object created with the Create
method is freed with a corresponding call to Destroy
. This nullifies the internal representation of the object in Oracle COM Automation Feature and releases all interfaces associated with the object.
Using the constructor that takes only the progID
parameter forces Oracle COM Automation Feature to check the registry for the location of the COM object. Registry information indicates whether the COM object is local or remote.
Oracle COM Automation Feature for Java does not allow in-process COM Automation servers. Developers can use dllhost
to support in-process servers.
The COMException
exception is thrown if an error occurs.
// Use the default constructor. Automation word = new Automation(); Automation excel = new Automation(); // Use the registry to determine where to create the COM object. word.Create("Word.Basic"); // Create the COM object on the specified server system. excel.Create("Excel.Application", "\\ServerName"); // Free the COM objects. word.Destroy(); excel.Destroy();
This API destroys a created COM Automation object.
public void Destroy()
Calling Destroy
nullifies the internal representation of the object in the Oracle COM Automation Feature and releases all interfaces associated with the object.
See "Create" for code sample.
This API gets a property value of a COM Automation object.
public allowed_type GetProperty(String propName, allowed_type[] propVal)
Where | Is |
---|---|
propName |
the property name of the COM object to return |
propVal |
the returned property value. The returned property type depends on the COM Automation type that is returned. The array must be big enough to hold at least one element although only the first element will be accessed to return the property. |
allowed_type |
from the following list: |
|
If the property is a COM object, then it can be retrieved using the allowed_type
of oracle.win.com.Automation
. The Automation Java object that is returned can be used to get and set properties and call methods on the property.
GetProperty
uses an array parameter to return the property value to overload the GetProperty
method. Overloading would not be possible if the property value were returned as a return value. The array solves the problem caused by Java not having an out parameter.
The property is still returned as a return value for convenience.
The COMException exception
is thrown if an error occurs.
// A Microsoft Excel ChartObject object. Automation chartObject = null; // A Microsoft Excel Chart object. Automation chart = null; // Used for properties of type Automation. Automation[] autoProp = { null }; // Assume the Microsoft Excel ChartObject object is initialized. // Get the Chart property. chartObject.GetProperty("Chart", autoProp); chart = autoProp[0]; // Set the Chart property. chartObject.SetProperty("Chart", chart);
This API sets a property of a COM Automation object to a new value.
public void SetProperty(String propName, allowed_type propVal)
Where | Is |
---|---|
propName |
the property name of the COM object being set to a new value |
propVal |
the new value of the property. It must be a value of the appropriate data type. |
allowed_type |
from the following list: |
|
If the property is a COM object, it can be set using the allowed type of oracle.win.com.Automation
. The property value must be a valid Automation Java object.
The COMException exception
is thrown if an error occurs.
See "GetProperty" for sample code.
This API initializes the parameter set passed to an Invoke
call.
public void InitArg()
The InitArg
call initializes the parameter set and must be called even if the COM method does not take any parameters. After InitArg
has been called, a SetArg
call sets the first parameter to the specified value. A second SetArg
call sets the second parameter in the parameter list. Subsequent calls set the nth parameters in the parameter list, where n is the number of times SetArg
has been called after an InitArg
call. Another call to InitArg
resets the argument list and a call to SetArg
sets the first parameter again.
See "Invoke" for sample code.
This API is used to construct the parameter list for the next Invoke
call.
public void SetArg(allowed_type val)
Where | Is |
---|---|
val |
the value of the parameter to be passed to an Invoke call. The parameter set is the nth parameter in the parameter list, where n is the number of times SetArg has been called after an InitArg call. |
allowed_type |
from the following list. |
|
|
|
If a parameter is a COM object, then the allowed_type
of the corresponding argument should be oracle.win.com.Automation
. The argument should be a valid Automation Java object.
No exceptions are thrown at this time. However, if an error occurs, for example, if the wrong argument type is passed, then it will be caught when the Invoke
method is called.
See "Invoke" for sample code.
Calls a method of a COM Automation object. This function uses the parameter list, previously created by the calls to InitArg
and SetArg
, as input for the COM Automation method.
public void Invoke(String methodName, allowed_type[] retVal)
public void Invoke(String methodName)
Where | Is |
---|---|
methodName |
the method name of the COM Automation object to call |
retVal |
the return value of the method of the COM Automation object. If specified, then it must be a local variable of the appropriate data type. The array must be big enough to hold at least one element, although only the first element will be accessed to return the property. |
allowed_type |
a type from the following list: |
|
If the COM method returns a COM object as the return value, then the allowed_type
of the return value is oracle.win.com.Automation
. The Automation Java object that is returned can be used to get and set properties, and call methods on the return value.
To overload the Invoke
method,
Invoke
uses an array parameter to return the values of COM object methods. Overloading would not be possible if the property value was returned as a return value. The array solves the problem caused by Java not having an out parameter.
The version of Invoke
that takes only one parameter, public void Invoke(String methodName)
, is used for COM object methods with void
return types.
The property is still returned as a return value for convenience.
The COMException exception
is thrown if an error occurs.
// A Microsoft Excel Worksheet object. Automation workSheet = null; // A Microsoft Excel ChartObjects collection object. Automation chartObjects = null; // A Microsoft Excel ChartObject object. Automation chartObject = null; // Used for return values of type Automation. Automation[] autorv = { null }; // Dimensions for a Microsoft Excel ChartObject object. short xpos = 100, ypos = 30, width = 400, height = 250; // Assume the Microsoft Excel Worksheet object is initialized. // Invoke a method that takes no arguments. workSheet.InitArg(); workSheet.Invoke("ChartObjects", autorv); chartObjects = autorv[0]; // Invoke a method that takes multiple arguments. chartObjects.InitArg(); chartObjects.SetArg(xpos); chartObjects.SetArg(ypos); chartObjects.SetArg(width); chartObjects.SetArg(height); chartObjects.Invoke("Add", autorv); chartObject = autorv[0];
This API creates a currency
Java object.
public Currency(long value)
Where | Is |
---|---|
value |
the 8-byte CURRENCY number |
This API gets the 8-byte CURRENCY
number.
public long Get()
Returns the 8-byte CURRENCY
number.