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

interface XAreaLinks
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-::com::sun::star::container::XElementAccess
    |
    +-::com::sun::star::container::XIndexAccess
       |
       +-XAreaLinks
Description
provides access via index to a collection of area links and inserting and removing area links.
See also
CellAreaLinks
See also
CellAreaLink
Developers Guide
8.3.6 Spreadsheet Documents - Working with Spreadsheet Documents - Linking External Data - Cell Area Links

Methods' Summary
insertAtPosition creates an area link and adds it to the collection.
removeByIndex removes an area link from the collection.
Methods' Details
insertAtPosition
void
insertAtPosition(
 
[in] ::com::sun::star::table::CellAddress
[in] string
[in] string
[in] string
[in] string
 
aDestPos,
aFileName,
aSourceArea,
aFilter,
aFilterOptions );

Description
creates an area link and adds it to the collection.
Parameter aDestPos
the address of the first cell of the range inside the current document.
Parameter aFileName
the URL of the source document.
Parameter aSourceArea
the name of the range in 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.

Parameter aFilter
the name of the filter used to load the source document.
Parameter aFilterOptions
optional filter options for the specified filter.
removeByIndex
void
removeByIndex(
 
[in] long
 
nIndex );

Description
removes an area link from the collection.
Top of Page