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

interface XMultiFormulaTokens

Methods' Summary
getTokens returns the formula at specified index as sequence of tokens.  
setTokens sets the formula at specified index as sequence of tokens.  
getCount returns the number of formulas allowed in this formula token set.  
Methods' Details
getTokens
sequence< FormulaToken >
getTokens( [in] long  nIndex )
raises( ::com::sun::star::lang::IndexOutOfBoundsException );

Description
returns the formula at specified index as sequence of tokens.
Throws
IndexOutOfBoundsException If the given index lies not in the valid range then an ::com::sun::star::lang::IndexOutOfBoundsException exception is thrown.
setTokens
void
setTokens( [in] long  nIndex,
[in] sequence< FormulaToken >  aTokens )
raises( ::com::sun::star::lang::IndexOutOfBoundsException );

Description
sets the formula at specified index as sequence of tokens.
Throws
IndexOutOfBoundsException If the given index lies not in the valid range then an ::com::sun::star::lang::IndexOutOfBoundsException exception is thrown.
getCount
long
getCount();

Description
returns the number of formulas allowed in this formula token set.
Returns
the number of formulas the implementation supports.
Top of Page