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

interface XDatabaseRanges
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-::com::sun::star::container::XElementAccess
    |
    +-::com::sun::star::container::XNameAccess
       |
       +-XDatabaseRanges
Description
provides functions to manage a collection of database ranges.
See also
DatabaseRanges
Developers Guide
8.3.5 Spreadsheet Documents - Working with Spreadsheet Documents - Database Operations - Database Ranges

Methods' Summary
addNewByName adds a new database range to the collection.
removeByName removes a database range from the collection.
Methods' Details
addNewByName
void
addNewByName(
 
[in] string
[in] ::com::sun::star::table::CellRangeAddress
 
aName,
aRange );

Description
adds a new database range to the collection.
removeByName
void
removeByName(
 
[in] string
 
aName );

Description
removes a database range from the collection.
Top of Page