Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / offapi / com / sun / star / sheet / CellAreaLink.idl
blob1da32e790ca9375ca8687621abde2c5cd8ca853b
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 module com { module sun { module star { module sheet {
24 /** represents a linked cell range.
26 <p>A linked cell range is a range which is linked to an equal-sized
27 range in an external document. The contents of the external range is
28 copied into the range of this document.</p>
30 @see com::sun::star::sheet::CellAreaLinks
32 published service CellAreaLink
35 /** provides methods to change the settings of the linked cell range.
37 interface com::sun::star::sheet::XAreaLink;
40 /** provides methods to reload the external data.
42 interface com::sun::star::util::XRefreshable;
45 //!published service PropertySet
46 /** provides access to the properties.
48 interface com::sun::star::beans::XPropertySet;
51 /** specifies the URL of the source document.
53 [property] string Url;
56 /** specifies the name of the filter used to load the source document.
58 [property] string Filter;
61 /** specifies the filter options needed to load the source document.
63 [property] string FilterOptions;
66 /** specifies the delay time between two refresh actions in seconds.
68 @deprecated
71 [property] long RefreshDelay;
74 /** specifies the time between two refresh actions in seconds.
76 @since OOo 2.0
78 [optional, property] long RefreshPeriod;
84 }; }; }; };
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */