:: com :: sun :: star :: script ::

interface XInvocation2
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XInvocation
    |
    +-XInvocation2
Description
Extension of XInvocation to provide additional information about the methods and properties that are accessable via XInvocation.


Methods' Summary
getMemberNames returns the names of all methods and properties accessable via XInvocation.
getInfo returns information items for all methods and properties accessable via XInvocation.
getInfoForName returns information item for the method or property defined by aName
Methods' Details
getMemberNames
sequence< string >
getMemberNames();
 
 

Description
returns the names of all methods and properties accessable via XInvocation.
getInfo
sequence< InvocationInfo >
getInfo();
 
 

Description
returns information items for all methods and properties accessable via XInvocation.
See also
Invocation
getInfoForName
InvocationInfo
getInfoForName(
 
[in] string
[in] boolean 

raises(

 
aName,
bExact ) 
::com::sun::star::lang::IllegalArgumentException );

Description
returns information item for the method or property defined by aName
Parameter aName
specifies the name of the method or property
Parameter bExact
specifies the name of the method or property
Throws
IllegalArgumentException if aName is not the name of a supported method or property
See also
Invocation
Top of Page