:: com :: sun :: star :: awt :: grid ::

unpublished interface XGridControl
Base Interfaces
XGridControlXGridSelection

XGridSelection
(referenced interface's summary:)
This interfaces provides access to the selection of row for UnoControlGrid.
Usage Restrictions
not published
Description
An interface to a control that displays a tabular data.
Since
OOo 3.3
See also
UnoControlGrid

Methods' Summary
getColumnAtPoint retrieves the column which a given point belongs to  
getRowAtPoint retrieves the row which a given point belongs to  
getCurrentColumn returns the column index of the currently active cell  
getCurrentRow returns the row index of the currently active cell  
Methods' Details
getColumnAtPoint
long
getColumnAtPoint( [in] long  X,
[in] long  Y );

Description
retrieves the column which a given point belongs to
Parameter X
the ordinate of the point, in pixel coordinates.
Parameter Y
the abscissa of the point, in pixel coordinates.
Returns
the index of the column which the point lies in, or -1 if no column is under the given point.
getRowAtPoint
long
getRowAtPoint( [in] long  X,
[in] long  Y );

Description
retrieves the row which a given point belongs to
Parameter X
the ordinate of the point, in pixel coordinates.
Parameter Y
the abscissa of the point, in pixel coordinates.
Returns
the index of the row which the point lies in, or -1 if no row is under the given point.
getCurrentColumn
long
getCurrentColumn();

Description
returns the column index of the currently active cell

If the grid control's does not contain any cells (which happens if the grid column model does not contain any columns, or if grid data model does not contain any rows), then -1 is returned.

getCurrentRow
long
getCurrentRow();

Description
returns the row index of the currently active cell

If the grid control's does not contain any cells (which happens if the grid column model does not contain any columns, or if grid data model does not contain any rows), then -1 is returned.

Top of Page