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

module grid

Services
DefaultGridColumnModel If you do not want to implement the XGridColumnModel yourself, use this service.
DefaultGridDataModel If you do not want to implement the XGridDataModel yourself, use this service.
GridColumn Represents a column as used by the DefaultGridColumnModel
UnoControlGrid A control that displays a set of tabular data.
UnoControlGridModel specifies the standard model of a UnoControlGridModel.
Interfaces
XGridCell
XGridCellRenderer renderer for cells
XGridColumn The XGridColumn defines the properties and behavior of a column in a grid control
XGridColumnListener An instance of this interface is used by the XGridColumnModel to get notifications about column model changes.
XGridColumnModel An instance of this interface is used by the UnoControlGrid to retrieve the column structure that is displayed in the actual control. If you do not need your own model implementation, you can also use the DefaultGridColumnModel.
XGridControl An interface to a control that displays a tabular data.
XGridControlListener
XGridDataListener An instance of this interface is used by the XGridDataModel to get notifications about data model changes.
XGridDataModel An instance of this interface is used by the UnoControlGrid to retrieve the content data that is displayed in the actual control. If you do not need your own model implementation, you can also use the DefaultGridDataModel.
XGridSelection This interfaces provides access to the selection of row for UnoControlGrid.
XGridSelectionListener An instance of this interface is used by the XGridSelection to get notifications about selection changes.
Structs
GridColumnEvent An event used by a XGridColumn to notify changes in the column.
GridControlEvent
GridDataEvent An event used by a XGridDataModel to notify changes in the data model to the XGridControl. You usually need to fill this event only if you implement the XGridDataModel yourself.
GridSelectionEvent An event used by a XGridControl to notify changes in the selection.
Exceptions
GridInvalidDataException Exception is thrown to indicate that set data is invalid, e.g. type of data is unknown or data count doesn't match with column count.
GridInvalidModelException Exception is thrown when data or column model isn't set.
Enums
ScrollBarMode specifies the adjustment type.
SelectionEventType specifies the type of a selection event, as used by GridSelectionEvent.
Top of Page