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

unpublished service UnoControlGridModel
Usage Restrictions
not published
Description
specifies the standard model of a UnoControlGridModel.

Included Services - Summary
::com::sun::star::awt::UnoControlModel

specifies the standard model of an ::com::sun::star::awt::UnoControl.

Properties' Summary
boolean
ShowRowHeader
Specifies whether the grid control should display a special header column.  
boolean
ShowColumnHeader
Specifies whether the grid control should display a title row.  
XGridColumnModel
ColumnModel
Specifies the XGridColumnModel that is providing the column structure.  
XGridDataModel
DataModel
Specifies the XGridDataModel that is providing the hierarchical data.  
boolean
HScroll
Specifies the vertical scrollbar mode.  
boolean
VScroll
Specifies the horizontal scrollbar mode.  
::com::sun::star::view::SelectionType
SelectionModel
Specifies the selection mode that is enabled for this grid control.  
Included Services - Details
::com::sun::star::awt::UnoControlModel
Description
specifies the standard model of an ::com::sun::star::awt::UnoControl.
Properties' Details
ShowRowHeader
boolean ShowRowHeader;
Description
Specifies whether the grid control should display a special header column.

The default value is false

ShowColumnHeader
boolean ShowColumnHeader;
Description
Specifies whether the grid control should display a title row.

The default value is true

ColumnModel
XGridColumnModel ColumnModel;
Description
Specifies the XGridColumnModel that is providing the column structure.

You can implement your own instance of XGridColumnModel or use the DefaultGridColumnModel.

DataModel
XGridDataModel DataModel;
Description
Specifies the XGridDataModel that is providing the hierarchical data.

You can implement your own instance of XGridDataModel or use the DefaultGridDataModel.

HScroll
boolean HScroll;
Description
Specifies the vertical scrollbar mode.

The default value is false

VScroll
boolean VScroll;
Description
Specifies the horizontal scrollbar mode.

The default value is false

SelectionModel
::com::sun::star::view::SelectionType SelectionModel;
Description
Specifies the selection mode that is enabled for this grid control.

The default value is ::com::sun::star::view::SelectionType::SINGLE


 
Top of Page