| LibreOffice
    LibreOffice 24.8 SDK API Reference | 
provides methods to query cells for dependencies in formulas. More...
import "XFormulaQuery.idl";
 
  
| Public Member Functions | |
| com::sun::star::sheet::XSheetCellRanges | queryDependents ([in] boolean bRecursive) | 
| queries all dependent formula cells. | |
| com::sun::star::sheet::XSheetCellRanges | queryPrecedents ([in] boolean bRecursive) | 
| queries all precedent cells. | |
| Public Member Functions inherited from XInterface | |
| any | queryInterface ([in] type aType) | 
| queries for a new interface to an existing UNO object. | |
| void | acquire () | 
| increases the reference counter by one. | |
| void | release () | 
| decreases the reference counter by one. | |
provides methods to query cells for dependencies in formulas.
All methods return a collection of cell ranges.
| com::sun::star::sheet::XSheetCellRanges queryDependents | ( | [in] boolean | bRecursive | ) | 
queries all dependent formula cells.
Dependent cells are cells containing formulas with references to the original cell.
| bRecursive | FALSE = queries cells dependent from the original range(s), TRUE = repeats query with all found cells (finds dependents of dependents, and so on). | 
| com::sun::star::sheet::XSheetCellRanges queryPrecedents | ( | [in] boolean | bRecursive | ) | 
queries all precedent cells.
Precedent cells are cells which are referenced from a formula cell.
| bRecursive | FALSE = queries precedent cells of the original range(s), TRUE = repeats query with all found cells (finds precedents of precedents, and so on). |