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

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

interface XFormulaQuery

Base Interface
com::sun::star::uno::XInterface

Description
provides methods to query cells for dependencies in formulas.
See also
com::sun::star::sheet::SheetRangesQuery


Known Services which Export this Interface

com::sun::star::sheet::SheetRangesQuery makes it possible to query for cells.

Methods' Summary

queryDependents points the cursor to the cells which are dependent on the cells to which it is currently pointing.
queryPrecedents points the cursor to the cells which are precedent to the cells to which it is currently pointing.

Methods' Details

queryDependents
 
com::sun::star::sheet::XSheetCellRanges
queryDependents(
[ in ] boolean bRecursive );

Description
points the cursor to the cells which are dependent on the cells to which it is currently pointing.

Dependent cells are cells containing formulas with references to the original cells.

queryPrecedents
 
com::sun::star::sheet::XSheetCellRanges
queryPrecedents(
[ in ] boolean bRecursive );

Description
points the cursor to the cells which are precedent to the cells to which it is currently pointing.

Precedent cells are cells which are used in formulas as references in the original cells.


Top of Page