ooodev.adapter.awt.grid.uno_control_grid_model_partial module
- class ooodev.adapter.awt.grid.uno_control_grid_model_partial.UnoControlGridModelPartial(component)[source]
Bases:
UnoControlModelPartialPartial class for UnoControlGridModel.
- Parameters:
component (UnoControlGridModel) –
- __init__(component)[source]
Constructor
- Parameters:
component (Any) – Component that implements
com.sun.star.awt.UnoControlGridModelservice.
- set_font_descriptor(font_descriptor)[source]
Sets the font descriptor of the control.
- Parameters:
font_descriptor (FontDescriptor, FontDescriptorStructComp) – UNO Struct - Font descriptor to set.
- Return type:
None
Note
The
font_descriptorproperty can also be used to set the font descriptor.Hint
FontDescriptorcan be imported fromooo.dyn.awt.font_descriptor.
- Return type:
None
- Parameters:
font_descriptor (FontDescriptor | FontDescriptorStructComp) –
- property active_selection_background_color: Color | None
Gets/Sets the color to be used when drawing the background of selected cells, while the control has the focus.
If this property has a value of
None, the grid control renderer will use some default color, depending on the control’s style settings.- Returns:
Color to be used when drawing the background of selected cells, while the control has the focus.
- Return type:
Color | None
- property active_selection_text_color: Color | None
Gets the color to be used when drawing the text of selected cells, while the control has the focus.
If this property has a value of VOID, the grid control renderer will use some default color, depending on the control’s style settings.
- Returns:
Color or None if not set.
- Return type:
Color | None
- property column_header_height: UnitAppFontHeight | None
Gets/Sets the height of the column header row, if applicable.
The height is specified in application font units.
The value given here is ignored if ShowColumnHeader is
False.If the property is
None, the grid control shall automatically determine a height which conveniently allows, according to the used font, to display one line of text.When setting the property the value can be set with
UnitTorfloatinAppFontunits.- Return type:
UnitAppFontHeight | None
- property column_model: com.sun.star.awt.grid.XGridColumnModel
Specifies the
XGridColumnModelthat is providing the column structure.You can implement your own instance of
XGridColumnModelor use the DefaultGridColumnModel.The column model is in the ownership of the grid model: When you set a new column model, or dispose the grid model, then the (old) column model is disposed, too.
The default for this property is an empty instance of the DefaultGridColumnModel.
- Return type:
XGridColumnModel
- property font_descriptor: FontDescriptorStructComp
Gets/Sets the Font Descriptor.
Setting value can be done with a
FontDescriptororFontDescriptorStructCompobject.- Returns:
Font Descriptor
- Return type:
Hint
FontDescriptorcan be imported fromooo.dyn.awt.font_descriptor.
- property font_emphasis_mark: FontEmphasisEnum
Gets/Sets the
FontEmphasisvalue of the text in the control.Note
Value can be set with
FontEmphasisEnumorint.Hint
FontEmphasisEnumcan be imported fromooo.dyn.text.font_emphasis.
- Return type:
FontEmphasisEnum
- property font_relief: FontReliefEnum
Gets/Sets
FontReliefvalue of the text in the control.Note
Value can be set with
FontReliefEnumorint.Hint
FontReliefEnumcan be imported fromooo.dyn.text.font_relief.
- Return type:
FontReliefEnum
- property grid_line_color: Color | None
Gets/Sets the color to be used when drawing lines between cells
If this property has a value of
None, the grid control renderer will use some default color, depending on the control’s style settings.- Returns:
Color or None if not set.
- Return type:
Color | None
- property h_scroll: bool
Gets/Sets the vertical scrollbar mode.
The default value is
False- Return type:
bool
- property header_background_color: Color | None
Gets/Sets the color to be used when drawing the background of row or column headers
If this property has a value of
None, the grid control renderer will use some default color, depending on the control’s style settings.- Returns:
Color or None if not set.
- Return type:
Color | None
- property header_text_color: Color | None
Gets/Sets the color to be used when drawing the text within row or column headers
If this property has a value of
None, the grid control renderer will use some default color, depending on the control’s style settings.- Returns:
Color or None if not set.
- Return type:
Color | None
- property help_text: str
Get/Sets the help text of the control.
- Return type:
str
- property help_url: str
Gets/Sets the help URL of the control.
- Return type:
str
- property inactive_selection_background_color: Color | None
Gets/Sets the color to be used when drawing the background of selected cells, while the control does not have the focus.
If this property has a value of
None, the grid control renderer will use some default color, depending on the control’s style settings.- Returns:
Color or None if not set.
- Return type:
Color | None
- property inactive_selection_text_color: Color | None
Gets/Sets the color to be used when drawing the text of selected cells, while the control does not have the focus.
If this property has a value of
None, the grid control renderer will use some default color, depending on the control’s style settings.- Returns:
Color or None if not set.
- Return type:
Color | None
- property row_background_colors: Tuple[Color, ...]
Gets/Sets the colors to be used as background for data rows.
If this sequence is non-empty, the data rows will be rendered with alternating background colors: Assuming the sequence has n elements, each row will use the background color as specified by its number’s remainder modulo n.
If this sequence is empty, all rows will use the same background color as the control as whole.
If this property is empty, rows will be painted in alternating background colors, every second row having a background color derived from the control’s selection color.
- Returns:
Tuple of ~ooodev.utils.color.Color objects.
- Return type:
Tuple[Color, …]
- property row_header_width: UnitAppFontWidth | None
Gets/Sets the width of the row header column, if applicable.
The width is specified in application font units.
The value given here is ignored if
show_row_headerisFalse.When setting the property the value can be set with
UnitTorfloatinAppFontunits.- Return type:
UnitAppFontWidth | None
- property row_height: UnitAppFontHeight | None
Gets/Sets the height of rows in the grid control.
The height is specified in application font units.
When setting the property the value can be set with
UnitTorfloatinAppFontunits.- Return type:
UnitAppFontHeight | None
- property selection_model: SelectionType
Gets/Sets the selection mode that is enabled for this grid control.
The default value is
com.sun.star.view.SelectionType.SINGLEHint
SelectionTypecan be imported fromooo.dyn.view.selection_type
- Return type:
SelectionType
- property show_column_header: bool
Gets/Sets whether the grid control should display a title row.
The default value is
True.- Return type:
bool
- property show_row_header: bool
Gets/Sets whether the grid control should display a special header column.
The default value is
False.- Return type:
bool
- property tabstop: bool
Gets/Sets - that the control can be reached with the TAB key.
- Return type:
bool
- property text_color: Color
Gets/Sets the text color of the control.
- Returns:
Text color.
- Return type:
- property text_line_color: Color
Gets/Sets the text line color of the control.
- Returns:
Text line color.
- Return type:
- property use_grid_lines: bool
Gets/Sets whether or not to paint horizontal and vertical lines between the grid cells.
- Return type:
bool
- property v_scroll: bool
Gets/Sets the horizontal scrollbar mode.
The default value is
False.- Return type:
bool
- property vertical_align: VerticalAlignment
Gets/Sets the vertical alignment of the text in the control.
optional
Hint
VerticalAlignmentcan be imported fromooo.dyn.style.vertical_alignment
- Return type:
VerticalAlignment