interface XFormulaQuery in module com::sun::star::sheet::

(Global Index)

Syntax

interface XFormulaQuery : com::sun::star::uno::XInterface ;

Description

provides methods to query cells for dependencies in formulas.

See also

SheetRangesQuery

Method 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.

Known Services Which Export this Interface

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

Method Details



queryDependents

Syntax

com::sun::star::sheet::XSheetCellRanges queryDependents (
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

Syntax

com::sun::star::sheet::XSheetCellRanges queryPrecedents (
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