The get method of the Dispatch Class contains the following signatures:
get(Object pDispatch, String dispName)
get(Object pDispatch, int dispid)
Accesses a property on an ActiveX Automation object.
public static Variant get(Object pDispatch, String dispName);
Returns the value of the property.
pDispatch | The Java proxy of the ActiveX Automation object. |
dispName | The name of the property that is accessed. |
Accesses a property on an ActiveX Automation object.
public static Variant get(Object pDispatch, int dispid);
Returns the value of the property.
pDispatch | The Java proxy of the ActiveX Automation object. |
dispid | The identifier of the property that is accessed. |