unreal.SpinBox

class unreal.SpinBox(outer=None, name='None')

Bases: unreal.Widget

A numerical entry box that allows for direct entry of the number or allows the user to click and slide the number.

C++ Source:

  • Module: UMG

  • File: SpinBox.h

Editor Properties: (see get_editor_property/set_editor_property)

  • accessible_behavior (SlateAccessibleBehavior): [Read-Write] Accessible Behavior: Whether or not the widget is accessible, and how to describe it. If set to custom, additional customization options will appear.

  • accessible_summary_behavior (SlateAccessibleBehavior): [Read-Write] Accessible Summary Behavior: How to describe this widget when it’s being presented through a summary of a parent widget. If set to custom, additional customization options will appear.

  • accessible_summary_text (Text): [Read-Write] Accessible Summary Text: When AccessibleSummaryBehavior is set to Custom, this is the text that will be used to describe the widget.

  • accessible_text (Text): [Read-Write] Accessible Text: When AccessibleBehavior is set to Custom, this is the text that will be used to describe the widget.

  • always_uses_delta_snap (bool): [Read-Write] Always Uses Delta Snap: Whether this spin box should use the delta snapping logic for typed values - default false

  • can_children_be_accessible (bool): [Read-Write] Can Children be Accessible: Whether or not children of this widget can appear as distinct accessible widgets.

  • clear_keyboard_focus_on_commit (bool): [Read-Write] Clear Keyboard Focus on Commit: Whether to remove the keyboard focus from the spin box when the value is committed

  • clipping (WidgetClipping): [Read-Write] Clipping: Controls how the clipping behavior of this widget. Normally content that overflows the bounds of the widget continues rendering. Enabling clipping prevents that overflowing content from being seen.

    NOTE: Elements in different clipping spaces can not be batched together, and so there is a performance cost to clipping. Do not enable clipping unless a panel actually needs to prevent content from showing up outside its bounds.

  • cursor (MouseCursor): [Read-Write] Cursor: The cursor to show when the mouse is over the widget

  • delta (float): [Read-Write] Delta: The amount by which to change the spin box value as the slider moves.

  • flow_direction_preference (FlowDirectionPreference): [Read-Write] Flow Direction Preference: Allows you to set a new flow direction

  • font (SlateFontInfo): [Read-Write] Font: Font color and opacity (overrides style)

  • foreground_color (SlateColor): [Read-Write] Foreground Color

  • is_enabled (bool): [Read-Write] Is Enabled: Sets whether this widget can be modified interactively by the user

  • is_volatile (bool): [Read-Write] Is Volatile: If true prevents the widget or its child’s geometry or layout information from being cached. If this widget changes every frame, but you want it to still be in an invalidation panel you should make it as volatile instead of invalidating it every frame, which would prevent the invalidation panel from actually ever caching anything.

  • justification (TextJustify): [Read-Write] Justification: The justification the value text should appear as.

  • max_fractional_digits (int32): [Read-Write] Max Fractional Digits: The maximume required fractional digits - default 6

  • max_slider_value (float): [Read-Write] Max Slider Value: The maximum allowable value that can be specified using the slider

  • max_value (float): [Read-Write] Max Value: The maximum allowable value that can be manually entered into the spin box

  • min_desired_width (float): [Read-Write] Min Desired Width: The minimum width of the spin box

  • min_fractional_digits (int32): [Read-Write] Min Fractional Digits: The minimum required fractional digits - default 1

  • min_slider_value (float): [Read-Write] Min Slider Value: The minimum allowable value that can be specified using the slider

  • min_value (float): [Read-Write] Min Value: The minimum allowable value that can be manually entered into the spin box

  • navigation (WidgetNavigation): [Read-Write] Navigation: The navigation object for this widget is optionally created if the user has configured custom navigation rules for this widget in the widget designer. Those rules determine how navigation transitions can occur between widgets.

  • on_begin_slider_movement (OnSpinBoxBeginSliderMovement): [Read-Write] On Begin Slider Movement: Called right before the slider begins to move

  • on_end_slider_movement (OnSpinBoxValueChangedEvent): [Read-Write] On End Slider Movement: Called right after the slider handle is released by the user

  • on_value_changed (OnSpinBoxValueChangedEvent): [Read-Write] On Value Changed: Called when the value is changed interactively by the user

  • on_value_committed (OnSpinBoxValueCommittedEvent): [Read-Write] On Value Committed: Called when the value is committed. Occurs when the user presses Enter or the text box loses focus.

  • override_accessible_defaults (bool): [Read-Write] Override Accessible Defaults: Override all of the default accessibility behavior and text for this widget.

  • override_cursor (bool): [Read-Write] Override Cursor

  • override_max_slider_value (bool): [Read-Write] Override Max Slider Value: Whether the optional MaxSliderValue attribute of the widget is set

  • override_max_value (bool): [Read-Write] Override Max Value: Whether the optional MaxValue attribute of the widget is set

  • override_min_slider_value (bool): [Read-Write] Override Min Slider Value: Whether the optional MinSliderValue attribute of the widget is set

  • override_min_value (bool): [Read-Write] Override Min Value: Whether the optional MinValue attribute of the widget is set

  • render_opacity (float): [Read-Write] Render Opacity: The opacity of the widget

  • render_transform (WidgetTransform): [Read-Write] Render Transform: The render transform of the widget allows for arbitrary 2D transforms to be applied to the widget.

  • render_transform_pivot (Vector2D): [Read-Write] Render Transform Pivot: The render transform pivot controls the location about which transforms are applied. This value is a normalized coordinate about which things like rotations will occur.

  • select_all_text_on_commit (bool): [Read-Write] Select All Text on Commit: Whether to select the text in the spin box when the value is committed

  • slider_exponent (float): [Read-Write] Slider Exponent: The exponent by which to increase the delta as the mouse moves. 1 is constant (never increases the delta).

  • slot (PanelSlot): [Read-Write] Slot: The parent slot of the UWidget. Allows us to easily inline edit the layout controlling this widget.

  • tool_tip_text (Text): [Read-Write] Tool Tip Text: Tooltip text to show when the user hovers over the widget with the mouse

  • tool_tip_widget (Widget): [Read-Only] Tool Tip Widget: Tooltip widget to show when the user hovers over the widget with the mouse

  • value (float): [Read-Write] Value: Value stored in this spin box

  • visibility (SlateVisibility): [Read-Write] Visibility: The visibility of the widget

  • widget_style (SpinBoxStyle): [Read-Write] Widget Style: The Style

property always_uses_delta_snap

[Read-Write] Always Uses Delta Snap: Whether this spin box should use the delta snapping logic for typed values - default false

Type

(bool)

property clear_keyboard_focus_on_commit

[Read-Only] Clear Keyboard Focus on Commit: Whether to remove the keyboard focus from the spin box when the value is committed

Type

(bool)

clear_max_slider_value() None

Clear the maximum value that can be specified using the slider.

clear_max_value() None

Clear the maximum value that can be manually set in the spin box.

clear_min_slider_value() None

Clear the minimum value that can be specified using the slider.

clear_min_value() None

Clear the minimum value that can be manually set in the spin box.

property delta

[Read-Write] Delta: The amount by which to change the spin box value as the slider moves.

Type

(float)

property font

[Read-Only] Font: Font color and opacity (overrides style)

Type

(SlateFontInfo)

property foreground_color

[Read-Only] Foreground Color

Type

(SlateColor)

get_max_slider_value() float

Get the current maximum value that can be specified using the slider.

Return type

float

get_max_value() float

Get the current maximum value that can be manually set in the spin box.

Return type

float

get_min_slider_value() float

Get the current minimum value that can be specified using the slider.

Return type

float

get_min_value() float

Get the current minimum value that can be manually set in the spin box.

Return type

float

get_value() float

Get the current value of the spin box.

Return type

float

property justification

[Read-Only] Justification: The justification the value text should appear as.

Type

(TextJustify)

property max_fractional_digits

[Read-Write] Max Fractional Digits: The maximume required fractional digits - default 6

Type

(int32)

property min_desired_width

[Read-Only] Min Desired Width: The minimum width of the spin box

Type

(float)

property min_fractional_digits

[Read-Write] Min Fractional Digits: The minimum required fractional digits - default 1

Type

(int32)

property on_begin_slider_movement

[Read-Write] On Begin Slider Movement: Called right before the slider begins to move

Type

(OnSpinBoxBeginSliderMovement)

property on_end_slider_movement

[Read-Write] On End Slider Movement: Called right after the slider handle is released by the user

Type

(OnSpinBoxValueChangedEvent)

property on_value_changed

[Read-Write] On Value Changed: Called when the value is changed interactively by the user

Type

(OnSpinBoxValueChangedEvent)

property on_value_committed

[Read-Write] On Value Committed: Called when the value is committed. Occurs when the user presses Enter or the text box loses focus.

Type

(OnSpinBoxValueCommittedEvent)

property select_all_text_on_commit

[Read-Only] Select All Text on Commit: Whether to select the text in the spin box when the value is committed

Type

(bool)

set_foreground_color(foreground_color) None

Set Foreground Color

Parameters

foreground_color (SlateColor) –

set_max_slider_value(new_value) None

Set the maximum value that can be specified using the slider.

Parameters

new_value (float) –

set_max_value(new_value) None

Set the maximum value that can be manually set in the spin box.

Parameters

new_value (float) –

set_min_slider_value(new_value) None

Set the minimum value that can be specified using the slider.

Parameters

new_value (float) –

set_min_value(new_value) None

Set the minimum value that can be manually set in the spin box.

Parameters

new_value (float) –

set_value(new_value) None

Set the value of the spin box.

Parameters

new_value (float) –

property slider_exponent

[Read-Only] Slider Exponent: The exponent by which to increase the delta as the mouse moves. 1 is constant (never increases the delta).

Type

(float)

property widget_style

[Read-Write] Widget Style: The Style

Type

(SpinBoxStyle)