:: com :: sun :: star :: accessibility ::

interface XAccessibleAction
Developers Guide
Accessibility - XAccessibleAction

Methods' Summary
getAccessibleActionCount Returns the number of accessible actions available in this object.  
doAccessibleAction Perform the specified Action on the object.  
getAccessibleActionDescription Returns a description of the specified action of the object.  
getAccessibleActionKeyBinding Returns a key binding object, if there is one, associated with the specified action. Note that there can be several alternative key bindings for an action. See XAccessibleKeyBinding for more information about how key bindings are represented.  
Methods' Details
getAccessibleActionCount
long
getAccessibleActionCount();

Description
Returns the number of accessible actions available in this object.

If there are more than one, the first one is considered the "default" action of the object.

Returns
The returned value of the number of actions is zero if there are no actions.
doAccessibleAction
boolean
doAccessibleAction( [in] long  nIndex )
raises( ::com::sun::star::lang::IndexOutOfBoundsException );

Description
Perform the specified Action on the object.
Parameter nIndex
This index specifies the action to perform. If it lies outside the valid range false is returned and no action is performed.
Returns
Returns true if the action was successfully performed. If the action could not be performed successfully false is returned.
Throws
IndexOutOfBoundsException If no action with the given index exists then an ::com::sun::star::lang::IndexOutOfBoundsException exception is thrown.
getAccessibleActionDescription
string
getAccessibleActionDescription( [in] long  nIndex )
raises( ::com::sun::star::lang::IndexOutOfBoundsException );

Description
Returns a description of the specified action of the object.
Parameter nIndex
This index specifies the action of which to return a description. If it lies outside the valid range an empty string is returned.
Returns
The returned value is a localized string of the specified action.
Throws
IndexOutOfBoundsException If the given index lies not in the valid range then an ::com::sun::star::lang::IndexOutOfBoundsException exception is thrown.
getAccessibleActionKeyBinding
XAccessibleKeyBinding
getAccessibleActionKeyBinding( [in] long  nIndex )
raises( ::com::sun::star::lang::IndexOutOfBoundsException );

Description
Returns a key binding object, if there is one, associated with the specified action. Note that there can be several alternative key bindings for an action. See XAccessibleKeyBinding for more information about how key bindings are represented.
Parameter nIndex
This index specifies the action of which to return the key binding.
Returns
The returned object describes a set of key bindings associated with the specified action.
Throws
IndexOutOfBoundsException if the given index is not valid.
Top of Page