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

(Global Index)

Syntax

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

Description

represents a linked cell range.

See also

CellAreaLink

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

Known Services Which Export this Interface

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

Method Details



getSourceArea

Syntax

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

Syntax

void setSourceArea (
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

Syntax

com::sun::star::table::CellRangeAddress getDestArea ();

Description

returns the position of the linked range in the destination document.


setDestArea

Syntax

void setDestArea (
com::sun::star::table::CellRangeAddress aDestArea );

Description

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

Top of Page