Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / offapi / com / sun / star / accessibility / AccessibleTableModelChange.idl
blob5c5088c17b1c0c08b24ba054ec926009a5adcd70
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 .
20 module com { module sun { module star { module accessibility {
22 /** This structure lets an event give access to a change of a table model.
24 <p>The data members of the AccessibleTableModelChange structure
25 give access to the type and cell range of a change of a table model. See
26 AccessibleTableModelChangeType for details of the change
27 type. The range of the affected rows, columns, and/or cells can be
28 obtained by accessing the other four data members.</p>
30 @since OOo 1.1.2
32 struct AccessibleTableModelChange
34 /** The type of the event as defined in
35 AccessibleTableModelChangeType.
37 <p>The model change either inserted or removed one or more rows
38 or columns or modified the content of a number of cells. See
39 AccessibleTableModelChangeType for details of the type
40 of the model change.</p>
42 short Type;
44 /** The lowest index of a row that has changed.
46 <p>The first row that has been changed or that contains
47 modified cells.</p>
49 long FirstRow;
51 /** The highest index of a row that has changed.
53 <p>The last row that has been changed or that contains modified
54 cells.</p>
56 long LastRow;
58 /** The lowest index of a column that has changed.
60 <p>The first column that has been changed or contains modified
61 cells.</p>
63 long FirstColumn;
65 /** The highest index of a column that has changed.
67 <p>The last column that has been changed or contains modified
68 cells.</p>
70 long LastColumn;
73 }; }; }; };
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */