summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/grid/GridSelectionEvent.idl
diff options
context:
space:
mode:
authorMihaela Kedikova <misheto@openoffice.org>2010-03-22 11:17:10 +0100
committerMihaela Kedikova <misheto@openoffice.org>2010-03-22 11:17:10 +0100
commit72467f901dedc705de4fea71c42279910b72f87c (patch)
tree3294f9ae011202374b96a565564bb66268d52cca /offapi/com/sun/star/awt/grid/GridSelectionEvent.idl
parent571b8b2d8f953e494208728a29af8b4f0c7ac465 (diff)
recent changes for grid control
Diffstat (limited to 'offapi/com/sun/star/awt/grid/GridSelectionEvent.idl')
-rw-r--r--offapi/com/sun/star/awt/grid/GridSelectionEvent.idl13
1 files changed, 8 insertions, 5 deletions
diff --git a/offapi/com/sun/star/awt/grid/GridSelectionEvent.idl b/offapi/com/sun/star/awt/grid/GridSelectionEvent.idl
index bc70417dd..ae6c34be8 100644
--- a/offapi/com/sun/star/awt/grid/GridSelectionEvent.idl
+++ b/offapi/com/sun/star/awt/grid/GridSelectionEvent.idl
@@ -53,14 +53,17 @@ struct GridSelectionEvent: com::sun::star::lang::EventObject
{
//-------------------------------------------------------------------------
- /** Contains the x coordinate of the selected cell**/
- long x;
+ /** the selected row*/
+ long Row;
- /** Contains the y coordinate of the selected cell**/
- long y;
+ /** the selected column*/
+ long Column;
+
+ /**number of selected rows, if multiple rows selected*/
+ long Range;
/** Contains the action <type>SelectionEventType</types> that was performed **/
- SelectionEventType action;
+ SelectionEventType Action;
};