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 .
20 #ifndef __com_sun_star_sheet_XCellRangeMovement_idl__
21 #define __com_sun_star_sheet_XCellRangeMovement_idl__
23 #include
<com
/sun
/star
/uno
/XInterface.idl
>
24 #include
<com
/sun
/star
/table
/CellRangeAddress.idl
>
25 #include
<com
/sun
/star
/sheet
/CellInsertMode.idl
>
26 #include
<com
/sun
/star
/sheet
/CellDeleteMode.idl
>
27 #include
<com
/sun
/star
/table
/CellAddress.idl
>
30 module com
{ module sun
{ module star
{ module sheet
{
33 /** provides methods for moving ranges of cells in a sheet.
35 published
interface XCellRangeMovement
: com
::sun
::star
::uno
::XInterface
38 /** inserts cells, moving other cells down or right.
40 <p>Non-empty cells cannot be moved off the sheet.</p>
43 the cell range in which empty cells will be inserted.
46 describes how to move existing cells.
49 [in] com
::sun
::star
::table
::CellRangeAddress aRange
,
50 [in] com
::sun
::star
::sheet
::CellInsertMode nMode
);
53 /** deletes cells, moving other cells up or left.
56 the cell range to remove.
59 describes how to move following cells.
62 [in] com
::sun
::star
::table
::CellRangeAddress aRange
,
63 [in] com
::sun
::star
::sheet
::CellDeleteMode nMode
);
66 /** moves a cell range to another position in the document.
68 <p>After copying the contents of the cell range, all cells
72 the address of the top left cell of the destination range.
75 the cell range which will be copied.
78 [in] com
::sun
::star
::table
::CellAddress aDestination
,
79 [in] com
::sun
::star
::table
::CellRangeAddress aSource
);
82 /** copies a cell range to another position in the document.
84 <p>The source cell range keeps unchanged.</p>
87 the address of the top left cell of the destination range.
90 the cell range which will be copied.
93 [in] com
::sun
::star
::table
::CellAddress aDestination
,
94 [in] com
::sun
::star
::table
::CellRangeAddress aSource
);
103 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */