:: com :: sun :: star :: sheet ::

interface XFunctionDescriptions
Base Interfaces
XFunctionDescriptions
┗ ::com::sun::star::container::XIndexAccess
   ┗ ::com::sun::star::container::XElementAccess

::com::sun::star::container::XIndexAccess
(referenced interface's summary:)
provides access to the elements of a collection through an index.
Description
provides access to the property sequence of a function description via function index or identifier.

The container access methods return a sequence of ::com::sun::star::beans::PropertyValue structs. The properties contained in the sequence are collected in the service FunctionDescription .

See also
FunctionDescriptions

Methods' Summary
getById finds a function description by the identifier of the function.  
Methods' Details
getById
sequence< ::com::sun::star::beans::PropertyValue >
getById( [in] long  nId )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
finds a function description by the identifier of the function.
Parameter nId
is the identifier of the function description (the same that is used in the service RecentFunctions .

Returns
the sequence of property values (described in FunctionDescription ).
Top of Page