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

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

interface XAreaLink

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

Description
represents a linked cell range.
See also
com::sun::star::sheet::CellAreaLink


Known Services which Export this Interface

com::sun::star::sheet::CellAreaLink a linked cell range.

Methods' Summary

getSourceArea returns the source of the range within the source document.
setSourceArea sets the source of the range within the source document.
getDestArea returns the position of the linked range in the destination document.
setDestArea sets the position of the linked range in the destination document.

Methods' Details

getSourceArea
 
string
getSourceArea();
Description
returns the source of the range within the source document.

This can be the address of a cell or range in the form "sheet1.a1:c5", or the name of a named range or database range.

setSourceArea
 
void
setSourceArea(
[ in ] string aSourceArea );

Description
sets the source of the range within the source document.

This can be the address of a cell or range in the form "sheet1.a1:c5", or the name of a named range or database range.

getDestArea
 
com::sun::star::table::CellRangeAddress
getDestArea();
Description
returns the position of the linked range in the destination document.
setDestArea
 
void
setDestArea(
[ in ] com::sun::star::table::CellRangeAddress aDestArea );

Description
sets the position of the linked range in the destination document.

Top of Page