1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 /** provides a method to apply a Multiple Operations Table to the
27 published
interface XMultipleOperation
: com
::sun
::star
::uno
::XInterface
30 /** creates a table of formulas (a "Multiple Operations Table").
32 <p>The specified formulas are repeated, with references to the
33 specified cells replaced by references to values in the first
34 column and/or row of the range.</p>
37 the range that contains formula cells (modes
38 TableOperationMode::ROW or
39 TableOperationMode::COLUMN) or a single formula
40 cell (mode TableOperationMode::BOTH).
43 specifies the calculation mode to fill the cells.
46 contains the address of the cell that is referenced by
47 formulas in a row (mode TableOperationMode::ROW)
48 or by the formula cell used for two value series (mode
49 TableOperationMode::BOTH). This parameter is not
50 used if mode is TableOperationMode::COLUMN.
53 contains the address of the cell that is referenced by
54 formulas in a column (mode TableOperationMode::COLUMN)
55 or by the formula cell used for two value series (mode
56 TableOperationMode::BOTH). This parameter is not
57 used if mode is TableOperationMode::ROW.
59 void setTableOperation
(
60 [in] com
::sun
::star
::table
::CellRangeAddress aFormulaRange
,
61 [in] com
::sun
::star
::sheet
::TableOperationMode nMode
,
62 [in] com
::sun
::star
::table
::CellAddress aColumnCell
,
63 [in] com
::sun
::star
::table
::CellAddress aRowCell
);
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */