interface XInvocation2 in module com::sun::star::script::

(Global Index)

Syntax

interface XInvocation2 : com::sun::star::script::XInvocation ;

Description

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

Method Summary

getMemberNames

getInfo

getInfoForName

Method Details



getMemberNames

Syntax

sequence< string > getMemberNames ();

Description

Returns

The names of all methods and properties accessable via XInvocation.

getInfo

Syntax

sequence< com::sun::star::script::InvocationInfo > getInfo ();

Description

Returns

Information items for all methods and properties accessable via XInvocation.

See also

Invocation

getInfoForName

Syntax

com::sun::star::script::InvocationInfo getInfoForName (
string aName,
boolean bExact )
raises ( 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