Class SheetControlBase
- class ooodev.calc.controls.sheet_control_base.SheetControlBase(calc_obj, lo_inst=None)[source]
Bases:
LoInstPropsPartial,CalcSheetPropPartial,EventsPartial,TheDictionaryPartialA partial class for a cell control.
- Parameters:
calc_obj (Any) –
lo_inst (LoInst | None) –
- __init__(calc_obj, lo_inst=None)[source]
Constructor.
- Parameters:
lo_inst (LoInst, optional) – Lo instance.
calc_obj (Any) –
- Return type:
None
- insert_control_button(label='', *, name='', styles=None)[source]
Inserts a button control into sheet.
By Default the button has tab stop and does focus on click.
- Parameters:
label (str, optional) – Button label (text).
name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
Button Control
- Return type:
- insert_control_check_box(label='', *, name='', tri_state=True, state=TriStateKind.NOT_CHECKED, border=BorderKind.BORDER_3D, styles=None)[source]
Inserts a check box control into the sheet.
- Parameters:
label (str, optional) – Label (text) to assign to checkbox.
name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
tri_state (TriStateKind, optional) – Specifies that the control may have the state “don’t know”. Defaults to
True.state (TriStateKind, optional) – Specifies the state of the control.Defaults to
TriStateKind.CHECKED.border (BorderKind, optional) – Border option. Defaults to
BorderKind.BORDER_3D.styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
Checkbox Control
- Return type:
Hint
BorderKindcan be imported fromooodev.utils.kind.border_kind.TriStateKindcan be imported fromooodev.utils.kind.tri_state_kind.
- insert_control_combo_box(*, name='', entries=None, max_text_len=0, drop_down=True, read_only=False, border=BorderKind.BORDER_3D, styles=None)[source]
Inserts a ComboBox control into the sheet.
- Parameters:
name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
entries (Iterable[str], optional) – Combo box entries
tri_state (TriStateKind, optional) – Specifies that the control may have the state “don’t know”. Defaults to
True.state (TriStateKind, optional) – Specifies the state of the control.Defaults to
TriStateKind.CHECKED.max_text_len (int, optional) – Specifies the maximum character count, There’s no limitation, if set to 0. Defaults to
0.drop_down (bool, optional) – Specifies if the control has a drop down button. Defaults to
True.read_only (bool, optional) – Specifies that the content of the control cannot be modified by the user. Defaults to
False.border (BorderKind, optional) – Border option. Defaults to
BorderKind.BORDER_3D.styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
ComboBox Control
- Return type:
Hint
BorderKindcan be imported fromooodev.utils.kind.border_kind.
- insert_control_currency_field(*, name='', min_value=-1000000.0, max_value=1000000.0, spin_button=False, increment=1, accuracy=2, border=BorderKind.BORDER_3D, styles=None)[source]
Inserts a currency field control into the sheet.
- Parameters:
name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
min_value (float, optional) – Specifies the smallest value that can be entered in the control. Defaults to
-1000000.0.max_value (float, optional) – Specifies the largest value that can be entered in the control. Defaults to
1000000.0.spin_button (bool, optional) – When
True, a spin button is present. Defaults toFalse.increment (int, optional) – The step when the spin button is pressed. Defaults to
1.accuracy (int, optional) – Specifies the decimal accuracy. Default is
2decimal digitsborder (BorderKind, optional) – Border option. Defaults to
BorderKind.BORDER_3D.styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
Currency Field Control
- Return type:
Hint
BorderKindcan be imported fromooodev.utils.kind.border_kind.
- insert_control_date_field(*, name='', min_date=datetime.datetime(1900, 1, 1, 0, 0), max_date=datetime.datetime(2200, 12, 31, 0, 0), drop_down=True, date_format=DateFormatKind.SYSTEM_SHORT, border=BorderKind.BORDER_3D, styles=None)[source]
Inserts a Date field control into the form.
- Parameters:
name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
date_value (datetime.datetime | None, optional) – Specifics control datetime. Defaults to
None.min_date (datetime.datetime, optional) – Specifics control min datetime. Defaults to
datetime(1900, 1, 1, 0, 0, 0, 0).max_date (datetime.datetime, optional) – Specifics control Min datetime. Defaults to
datetime(2200, 12, 31, 0, 0, 0, 0).drop_down (bool, optional) – Specifies if the control is a dropdown. Defaults to
True.date_format (DateFormatKind, optional) – Date format. Defaults to
DateFormatKind.SYSTEM_SHORT.border (BorderKind, optional) – Border option. Defaults to
BorderKind.BORDER_3D.styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
Date Field Control
- Return type:
Hint
BorderKindcan be imported fromooodev.utils.kind.border_kind.DateFormatKindcan be imported fromooodev.utils.kind.date_format_kind.
- insert_control_file(*, name='', styles=None)[source]
Inserts a file control.
- Parameters:
name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
File Control.
- Return type:
- insert_control_formatted_field(*, name='', min_value=-1000000.0, max_value=1000000.0, spin_button=False, border=BorderKind.BORDER_3D, styles=None)[source]
Inserts a currency field control into the form.
- Parameters:
name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
min_value (float, optional) – Specifies the smallest value that can be entered in the control. Defaults to
-1000000.0.max_value (float, optional) – Specifies the largest value that can be entered in the control. Defaults to
1000000.0.spin_button (bool, optional) – When
True, a spin button is present. Defaults toFalse.border (BorderKind, optional) – Border option. Defaults to
BorderKind.BORDER_3D.styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
Currency Field Control.
- Return type:
Hint
BorderKindcan be imported fromooodev.utils.kind.border_kind.
- insert_control_grid(label='', *, name='', styles=None)[source]
Inserts a Grid control.
- Parameters:
name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
label (str, optional) – Grid label.
styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
Grid Control
- Return type:
- insert_control_group_box(label='', *, name='', styles=None)[source]
Inserts a Groupbox control into the form.
- Parameters:
label (str, optional) – Groupbox label.
name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
Groupbox Control
- Return type:
- insert_control_image_button(image_url='', *, name='', border=BorderKind.BORDER_3D, styles=None)[source]
Inserts an Image Button control into the form.
- Parameters:
image_url (PathOrStr, optional) – Image URL. When setting the value it can be a string or a Path object. If a string is passed it can be a URL or a path to a file. Value such as
file:///path/to/image.pngand/path/to/image.pngare valid. Relative paths are supported.name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
border (BorderKind, optional) – Border option. Defaults to
BorderKind.BORDER_3D.styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
Image Button Control.
- Return type:
Hint
BorderKindcan be imported fromooodev.utils.kind.border_kind.
- insert_control_label(label, *, name='', styles=None)[source]
Inserts a Label control.
- Parameters:
label (str) – Contents of label.
name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
Label Control.
- Return type:
- insert_control_list_box(*, entries=None, name='', drop_down=True, read_only=False, line_count=5, multi_select=False, border=BorderKind.BORDER_3D, styles=None)[source]
Inserts a ListBox control into the form.
- Parameters:
entries (Iterable[str], optional) – Combo box entries
name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
drop_down (bool, optional) – Specifies if the control has a drop down button. Defaults to
True.read_only (bool, optional) – Specifies that the content of the control cannot be modified by the user. Defaults to
False.line_count (int, optional) – Specifies the number of lines to display. Defaults to
5.multi_select (int, optional) – Specifies if multiple entries can be selected. Defaults to
False.border (BorderKind, optional) – Border option. Defaults to
BorderKind.BORDER_3D.styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
ListBox Control.
- Return type:
Hint
BorderKindcan be imported fromooodev.utils.kind.border_kind.
- insert_control_numeric_field(*, name='', min_value=-1000000.0, max_value=1000000.0, spin_button=False, increment=1, accuracy=2, border=BorderKind.BORDER_3D, styles=None)[source]
Inserts a Numeric field control into the form.
- Parameters:
name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
min_value (float, optional) – Specifies the smallest value that can be entered in the control. Defaults to
-1000000.0.max_value (float, optional) – Specifies the largest value that can be entered in the control. Defaults to
1000000.0.spin_button (bool, optional) – When
True, a spin button is present. Defaults toFalse.increment (int, optional) – The step when the spin button is pressed. Defaults to
1.accuracy (int, optional) – Specifies the decimal accuracy. Default is
2decimal digitsborder (BorderKind, optional) – Border option. Defaults to
BorderKind.BORDER_3D.anchor_type (TextContentAnchorType, optional) – Control Anchor Type. Defaults to
TextContentAnchorType.AT_PARAGRAPHstyles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
Numeric Field Control.
- Return type:
Hint
BorderKindcan be imported fromooodev.utils.kind.border_kind.
- insert_control_pattern_field(*, name='', edit_mask='', literal_mask='', border=BorderKind.BORDER_3D, styles=None)[source]
Inserts a Pattern field control into the form.
- Parameters:
name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
edit_mask (str, optional) – Specifies a character code that determines what the user may enter. Defaults to
"".literal_mask (str, optional) – Specifies the initial values that are displayed in the pattern field. Defaults to
"".border (BorderKind, optional) – Border option. Defaults to
BorderKind.BORDER_3D.anchor_type (TextContentAnchorType, optional) – Control Anchor Type. Defaults to
TextContentAnchorType.AT_PARAGRAPHstyles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
Pattern Field Control.
- Return type:
Hint
BorderKindcan be imported fromooodev.utils.kind.border_kind.
- insert_control_radio_button(label='', *, state=StateKind.NOT_CHECKED, multiline=False, border=BorderKind.NONE, name='', styles=None)[source]
Inserts a radio button control into the form.
- Parameters:
label (str, optional) – Label (text) of control.
tri_state (StateKind, optional) – Specifies that the control may have the state “don’t know”. Defaults to
True.state (StateKind, optional) – Specifies the state of the control.Defaults to
StateKind.NOT_CHECKED.multiline (bool, optional) – Specifies if the control can display multiple lines of text. Defaults to
False.border (BorderKind, optional) – Border option. Defaults to
BorderKind.NONE.anchor_type (TextContentAnchorType, optional) – Control Anchor Type. Defaults to
TextContentAnchorType.AT_PARAGRAPHname (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
Radio Button Control.
- Return type:
Hint
BorderKindcan be imported fromooodev.utils.kind.border_kind.StateKindcan be imported fromooodev.utils.kind.state_kind.
- insert_control_rich_text(*, name='', border=BorderKind.BORDER_3D, styles=None)[source]
Inserts a Rich Text control.
- Parameters:
name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
border (BorderKind, optional) – Border option. Defaults to
BorderKind.BORDER_3D.styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
Rich Text Control.
- Return type:
Hint
BorderKindcan be imported fromooodev.utils.kind.border_kind.
- insert_control_scroll_bar(*, name='', min_value=0, max_value=100, orientation=OrientationKind.HORIZONTAL, border=BorderKind.BORDER_3D, styles=None)[source]
Inserts a Scrollbar control.
- Parameters:
name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
min_value (float, optional) – Specifies the smallest value that can be entered in the control. Defaults to
0.max_value (float, optional) – Specifies the largest value that can be entered in the control. Defaults to
100.orientation (OrientationKind, optional) – Orientation. Defaults to
OrientationKind.HORIZONTAL.border (BorderKind, optional) – Border option. Defaults to
BorderKind.BORDER_3D.styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
Scrollbar Control.
- Return type:
Hint
BorderKindcan be imported fromooodev.utils.kind.border_kind.OrientationKindcan be imported fromooodev.utils.kind.orientation_kind.
- insert_control_spin_button(value=0, *, name='', min_value=-1000000, max_value=1000000, increment=1, border=BorderKind.BORDER_3D, styles=None)[source]
Inserts a Spin Button control into the form.
- Parameters:
value (int, optional) – Specifies the initial value of the control. Defaults to
0.name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
min_value (float, optional) – Specifies the smallest value that can be entered in the control. Defaults to
-1000000.0.max_value (float, optional) – Specifies the largest value that can be entered in the control. Defaults to
1000000.0.increment (int, optional) – The step when the spin button is pressed. Defaults to
1.border (BorderKind, optional) – Border option. Defaults to
BorderKind.BORDER_3D.styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
Spin Button Control.
- Return type:
Hint
BorderKindcan be imported fromooodev.utils.kind.border_kind.
- insert_control_text_field(text='', *, name='', echo_char='', border=BorderKind.NONE, styles=None)[source]
Inserts a Text field control.
- Parameters:
text (str, optional) – Text value.
name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
echo_char (str, optional) – Character used for masking. Must be a single character.
border (BorderKind, optional) – Border option. Defaults to
BorderKind.NONE.styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
- Returns:
Text Field Control.
- Return type:
Hint
BorderKindcan be imported fromooodev.utils.kind.border_kind.
- insert_control_time_field(time_value=None, *, name='', min_time=datetime.time(0, 0), max_time=datetime.time(23, 59, 59, 999999), time_format=TimeFormatKind.SHORT_24H, spin_button=True, border=BorderKind.BORDER_3D, styles=None)[source]
Inserts a Time field control into the form.
- Parameters:
time_value (datetime.time | None, optional) – Specifics the control time. Defaults to
None.name (str, optional) – Name of control. Must be a unique name. If empty, a unique name is generated.
min_time (datetime.time, optional) – Specifics control min time. Defaults to
time(0, 0, 0, 0).max_time (datetime.time, optional) – Specifics control min time. Defaults to a
time(23, 59, 59, 999_999).drop_down (bool, optional) – Specifies if the control is a dropdown. Defaults to
True.time_format (TimeFormatKind, optional) – Date format. Defaults to
TimeFormatKind.SHORT_24H.pin_button (bool, optional) – When
True, a spin button is present. Defaults toTrue.border (BorderKind, optional) – Border option. Defaults to
BorderKind.BORDER_3D.styles (Iterable[StyleT], optional) – One or more styles to apply to the control shape.
spin_button (bool) –
- Returns:
Time Field Control.
- Return type:
Hint
BorderKindcan be imported fromooodev.utils.kind.border_kind.TimeFormatKindcan be imported fromooodev.utils.kind.time_format_kind.
- on_finding_control(event_args)[source]
Event handler for finding control.
Triggers the
finding_controlevent.- Return type:
None- Parameters:
event_args (CancelEventArgs) –
- on_insert_control(event_args)[source]
Event handler for insert control.
Triggers the
insert_controlevent.- Return type:
None- Parameters:
event_args (EventArgs) –
- on_setting_shape_props(event_args)[source]
Event handler for setting shape properties.
Triggers the
setting_shape_propsevent.- Return type:
None- Parameters:
event_args (CancelEventArgs) –
- property calc_obj: Any
- Return type:
Any
- property current_control: Any
Gets/Sets the control.
When setting the control any previous control for the cell is removed.
- Return type:
Any