Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

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

interface XInvocation2

Base Interface
com::sun::star::script::XInvocation

Description
Extension of XInvocation to provide additional information about the methods and properties that are accessable via XInvocation.



Methods' Summary

getMemberNames
getInfo
getInfoForName

Methods' Details

getMemberNames
 
sequence< string >
getMemberNames();
Returns
The names of all methods and properties accessable via XInvocation.
getInfo
 
sequence< com::sun::star::script::InvocationInfo >
getInfo();
Returns
Information items for all methods and properties accessable via XInvocation.
See also
com::sun::star::script::Invocation
getInfoForName
 
com::sun::star::script::InvocationInfo
getInfoForName(
[ in ] string aName,
[ in ] boolean bExact )
raises ( com::sun::star::lang::IllegalArgumentException );

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
com::sun::star::script::Invocation

Top of Page