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

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

interface XSheetAuditing

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

Description
represents auditing functions of a sheet.


Methods' Summary

hideDependents removes arrows for one level of dependents of a cell.
hidePrecedents removes arrows for one level of precedents of a cell.
showDependents draws arrows between a cell and its dependent formulas.
showPrecedents draws arrows between a formula cell and its precedents.
showErrors draws arrows between a formula cell containing an error and the cells causing the error.
showInvalid marks all cells containing invalid values.
clearArrows removes all arrows.

Methods' Details

hideDependents
 
boolean
hideDependents(
[ in ] com::sun::star::table::CellAddress aPosition );

Description
removes arrows for one level of dependents of a cell.
hidePrecedents
 
boolean
hidePrecedents(
[ in ] com::sun::star::table::CellAddress aPosition );

Description
removes arrows for one level of precedents of a cell.
showDependents
 
boolean
showDependents(
[ in ] com::sun::star::table::CellAddress aPosition );

Description
draws arrows between a cell and its dependent formulas.

If the method is executed again for the same cell, another level of dependent cells is marked.

showPrecedents
 
boolean
showPrecedents(
[ in ] com::sun::star::table::CellAddress aPosition );

Description
draws arrows between a formula cell and its precedents.

If the method is executed again for the same cell, another level of precedent cells is marked.

showErrors
 
boolean
showErrors(
[ in ] com::sun::star::table::CellAddress aPosition );

Description
draws arrows between a formula cell containing an error and the cells causing the error.
showInvalid
 
boolean
showInvalid();
Description
marks all cells containing invalid values.
clearArrows
 
void
clearArrows();
Description
removes all arrows.

Top of Page