summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/grid/XGridDataModel.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/grid/XGridDataModel.idl')
-rw-r--r--offapi/com/sun/star/awt/grid/XGridDataModel.idl12
1 files changed, 7 insertions, 5 deletions
diff --git a/offapi/com/sun/star/awt/grid/XGridDataModel.idl b/offapi/com/sun/star/awt/grid/XGridDataModel.idl
index 5b5f3190f..9b9ec840d 100644
--- a/offapi/com/sun/star/awt/grid/XGridDataModel.idl
+++ b/offapi/com/sun/star/awt/grid/XGridDataModel.idl
@@ -76,24 +76,26 @@ interface XGridDataModel
<p>At the moment, only string tool tips are supported.</p>
+ <p>If <VOID/> is returned here, the cell's content will be displayed as tip, but only if it does
+ not fit into the cell.</p>
+
@throws ::com::sun::star::lang::IndexOutOfBoundsException
if the column or row index do not denote a valid cell position.
*/
any getCellToolTip( [in] long Column, [in] long Row )
raises ( ::com::sun::star::lang::IndexOutOfBoundsException );
- /** retrieves the title of the given row
+ /** retrieves the heading of a given row
<p>A grid control will usually paint a row's title in the header column of the respective row.</p>
- <p>If <VOID/> is returned here, the cell's content will be displayed as tip, but only if it does
- not fit into the cell.</p>
+ <p>At the moment, only strings are supported as row headings.</p>
@throws ::com::sun::star::lang::IndexOutOfBoundsException
if the given index does not denote a valid row.
*/
- string
- getRowTitle( [in] long RowIndex )
+ any
+ getRowHeading( [in] long RowIndex )
raises ( ::com::sun::star::lang::IndexOutOfBoundsException );
};