Update ooo320-m1
[ooovba.git] / offapi / com / sun / star / accessibility / AccessibleTableModelChange.idl
blob82dc5b86e9cd49576456d773b55867d1ecf4bbdc
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: AccessibleTableModelChange.idl,v $
10 * $Revision: 1.7 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef __com_sun_star_accessibility_AccessibleTableModelChange_idl__
32 #define __com_sun_star_accessibility_AccessibleTableModelChange_idl__
34 #ifndef __com_sun_star_uno_XInterface_idl__
35 #include <com/sun/star/uno/XInterface.idl>
36 #endif
38 module com { module sun { module star { module accessibility {
40 /** This structure lets an event give access to a change of a table model.
42 <p>The data members of the <type>AccessibleTableModelChange</type> structure
43 give access to the type and cell range of a change of a table model. See
44 <type>AccessibleTableModelChangeType</type> for details of the change
45 type. The range of the affected rows, columns, and/or cells can be
46 obtained by accessing the other four data members.</p>
48 @since OOo 1.1.2
50 published struct AccessibleTableModelChange
52 /** The type of the event as defined in
53 <type>AccessibleTableModelChangeType</type>.
55 <p>The model change either inserted or deleted one or more rows
56 and/or columns or modified the content of a number of cells. See
57 <type>AccessibleTableModelChangeType</type> for details of the type
58 of the model change.</p>
60 short Type;
62 /** The lowest index of a row that has changed.
64 <p>The first row that has been changed or that contains
65 modified cells.</p>
67 long FirstRow;
69 /** The highest index of a row that has changed.
71 <p>The last row that has been changed or that contains modified
72 cells.</p>
74 long LastRow;
76 /** The lowest index of a column that has changed.
78 <p>The first column that has been changed or contains modified
79 cells.</p>
81 long FirstColumn;
83 /** The highest index of a column that has changed.
85 <p>The last column that has been changed or contains modified
86 cells.</p>
88 long LastColumn;
91 }; }; }; };
93 #endif