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

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

interface XSheetOutline

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

Description
represents outlining functions of a sheet.


Methods' 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.

Methods' Details

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

Description
creates an outline group.
ungroup
 
void
ungroup(
[ in ] com::sun::star::table::CellRangeAddress aRange,
[ in ] com::sun::star::table::TableOrientation nOrientation );

Description
removes outline groups.

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

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

Description
creates outline groups from formula references in a range.
clearOutline
 
void
clearOutline();
Description
removes all outline groups on the sheet.
hideDetail
 
void
hideDetail(
[ in ] com::sun::star::table::CellRangeAddress aRange );

Description
hides an outline group.
showDetail
 
void
showDetail(
[ in ] com::sun::star::table::CellRangeAddress aRange );

Description
shows an outline group.
showLevel
 
void
showLevel(
[ in ] short nLevel,
[ in ] com::sun::star::table::TableOrientation nOrientation );

Description
shows all outlined groups below a specified level.

Top of Page