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

(Global Index)

Syntax

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

Description

represents auditing functions of a sheet.

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

Method Details



hideDependents

Syntax

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

Description

removes arrows for one level of dependents of a cell.


hidePrecedents

Syntax

boolean hidePrecedents (
com::sun::star::table::CellAddress aPosition );

Description

removes arrows for one level of precedents of a cell.


showDependents

Syntax

boolean showDependents (
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

Syntax

boolean showPrecedents (
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

Syntax

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

Description

draws arrows between a formula cell containing an error and the cells causing the error.


showInvalid

Syntax

boolean showInvalid ();

Description

marks all cells containing invalid values.


clearArrows

Syntax

void clearArrows ();

Description

removes all arrows.

Top of Page