Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / sheet / XUnnamedDatabaseRanges.idl
blobfd51f50cbaf7900d4d6a8565cef8df4e9e3e8374
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #ifndef __com_sun_star_sheet_XUnnamedDatabaseRanges_idl__
11 #define __com_sun_star_sheet_XUnnamedDatabaseRanges_idl__
13 #include <com/sun/star/table/CellRangeAddress.idl>
14 #include <com/sun/star/uno/XInterface.idl>
15 #include <com/sun/star/container/NoSuchElementException.idl>
16 #include <com/sun/star/lang/IndexOutOfBoundsException.idl>
19 module com { module sun { module star { module sheet {
22 /** provides functions to manage the sheet local databases
23 * @since LibreOffice 3.5
26 interface XUnnamedDatabaseRanges: com::sun::star::uno::XInterface
28 void setByTable( [in] com::sun::star::table::CellRangeAddress aRange )
29 raises( com::sun::star::lang::IndexOutOfBoundsException );
31 any getByTable( [in] long nTab )
32 raises( com::sun::star::container::NoSuchElementException,
33 com::sun::star::lang::IndexOutOfBoundsException );
35 boolean hasByTable ( [in] long nTab )
36 raises( com::sun::star::lang::IndexOutOfBoundsException );
41 }; }; }; };
43 #endif
45 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */