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

(Global Index)

Syntax

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

Description

represents outlining functions of a sheet.

Method Summary

group creates an outline group.

ungroup removes outline groups.

autoOutline creates outline groups from formula references in a range.

clearOutline removes all outline groups on the sheet.

hideDetail hides an outline group.

showDetail shows an outline group.

showLevel shows all outlined groups below a specified level.

Method Details



group

Syntax

void group (
com::sun::star::table::CellRangeAddress aRange,
com::sun::star::table::TableOrientation nOrientation );

Description

creates an outline group.


ungroup

Syntax

void ungroup (
com::sun::star::table::CellRangeAddress aRange,
com::sun::star::table::TableOrientation nOrientation );

Description

removes outline groups.

In the specified range, all outline groups on the innermost level are removed.


autoOutline

Syntax

void autoOutline (
com::sun::star::table::CellRangeAddress aRange );

Description

creates outline groups from formula references in a range.


clearOutline

Syntax

void clearOutline ();

Description

removes all outline groups on the sheet.


hideDetail

Syntax

void hideDetail (
com::sun::star::table::CellRangeAddress aRange );

Description

hides an outline group.


showDetail

Syntax

void showDetail (
com::sun::star::table::CellRangeAddress aRange );

Description

shows an outline group.


showLevel

Syntax

void showLevel (
short nLevel,
com::sun::star::table::TableOrientation nOrientation );

Description

shows all outlined groups below a specified level.

Top of Page