Navigation
API > API/Runtime > API/Runtime/Slate > API/Runtime/Slate/SNumericEntryBox
| Name | FArguments |
| Type | struct |
| Header File | /Engine/Source/Runtime/Slate/Public/Widgets/Input/SNumericEntryBox.h |
| Include Path | #include "Widgets/Input/SNumericEntryBox.h" |
Syntax
struct FArguments : public TSlateBaseNamedArgs< SNumericEntryBox< NumericType > >
Inheritance Hierarchy
- FSlateBaseNamedArgs → TSlateBaseNamedArgs → SNumericEntryBox::FArguments
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FArguments() |
Widgets/Input/SNumericEntryBox.h |
Typedefs
| Name | Type | Remarks | Include Path |
|---|---|---|---|
| WidgetArgsType | FArguments | Widgets/Input/SNumericEntryBox.h |
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| _ShiftMouseMovePixelPerDelta | TAttribute< int32 > | Widgets/Input/SNumericEntryBox.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
WidgetArgsType & AllowSpin
(
bool InArg |
Whether or not the user should be able to change the value by dragging with the mouse cursor | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & AllowWheel
(
bool InArg |
Whether this spin box should have mouse wheel feature enabled, defaults to true | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & BorderBackgroundColor
(
FSlateColor InArg |
Border Background Color | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & BorderForegroundColor
(
FSlateColor InArg |
Border Foreground Color | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & BroadcastValueChangesPerKey
(
bool InArg |
True to broadcast every time we type | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & ContextMenuExtender
(
const FMenuExtensionDelegate& InDelegate |
Menu extender for right-click context menu | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & CtrlMultiplier
(
const TAttribute< float >& InAttribute |
Multiplier to use when ctrl is held down | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & Delta
(
const TAttribute< NumericType >& InAttribute |
Delta to increment the value as the slider moves. If not specified will determine automatically | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & DisplayToggle
(
bool InArg |
Whether or not to include a toggle checkbox to the left of the widget | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & EditableTextBoxStyle
(
const FEditableTextBoxStyle* InArg |
Style to use for the editable text box within this widget | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & Font
(
const TAttribute< FSlateFontInfo >& InAttribute |
Font color and opacity | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & Justification
(
const TAttribute< ETextJustify::Type >& InAttribute |
How should the value be justified in the editable text field. | Widgets/Input/SNumericEntryBox.h | |
NamedSlotProperty< FArguments > Label() |
Slot for this button's content (optional) | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & LabelLocation
(
ELabelLocation InArg |
Widgets/Input/SNumericEntryBox.h | ||
WidgetArgsType & LabelPadding
(
FMargin InArg |
Padding around the label content | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & LabelVAlign
(
EVerticalAlignment InArg |
Vertical alignment of the label content | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & LinearDeltaSensitivity
(
const TAttribute< int32 >& InAttribute |
If we're an unbounded spinbox, what value do we divide mouse movement by before multiplying by Delta. | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & MaxFractionalDigits
(
const TAttribute< TOptional< int32 > >& InAttribute |
The maximum fractional digits the spin box displays, defaults to 6 | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & MaxSliderValue
(
const TAttribute< TOptional< NumericType > >& InAttribute |
The maximum value that can be specified by using the slider | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & MaxValue
(
const TAttribute< TOptional< NumericType > >& InAttribute |
The maximum value that can be entered into the text edit box | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & MinDesiredValueWidth
(
const TAttribute< float >& InAttribute |
The minimum desired width for the value portion of the control. | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & MinFractionalDigits
(
const TAttribute< TOptional< int32 > >& InAttribute |
The minimum fractional digits the spin box displays, defaults to 1 | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & MinSliderValue
(
const TAttribute< TOptional< NumericType > >& InAttribute |
The minimum value that can be specified by using the slider | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & MinValue
(
const TAttribute< TOptional< NumericType > >& InAttribute |
The minimum value that can be entered into the text edit box | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & OnBeginSliderMovement
(
const FSimpleDelegate& InDelegate |
Called right before the slider begins to move | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & OnDynamicSliderMaxValueChanged
(
const FOnDynamicSliderMinMaxValueChanged& InDelegate |
Called right after the spinner max value is changed (only relevant if SupportDynamicSliderMaxValue is true) | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & OnDynamicSliderMinValueChanged
(
const FOnDynamicSliderMinMaxValueChanged& InDelegate |
Called right after the spinner min value is changed (only relevant if SupportDynamicSliderMinValue is true) | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & OnEndSliderMovement
(
const FOnValueChanged& InDelegate |
Called right after the slider handle is released by the user | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & OnToggleChanged
(
const FOnCheckStateChanged& InDelegate |
Called whenever the toggle changes state | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & OnUndeterminedValueChanged
(
const FOnUndeterminedValueChanged& InDelegate |
Called whenever the text is changed programmatically or interactively by the user | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & OnUndeterminedValueCommitted
(
const FOnUndeterminedValueCommitted& InDelegate |
Called whenever the text is committed. | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & OnValueChanged
(
const FOnValueChanged& InDelegate |
Called whenever the text is changed programmatically or interactively by the user | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & OnValueCommitted
(
const FOnValueCommitted& InDelegate |
Called whenever the text is committed. | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & OverrideTextMargin
(
const TAttribute< FMargin >& InAttribute |
The text margin to use if overridden. | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & PreventThrottling
(
bool InArg |
If refresh requests for the viewport should happen for all value changes | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & ShiftMouseMovePixelPerDelta
(
TAttribute< int32 > InAttribute |
Widgets/Input/SNumericEntryBox.h | ||
WidgetArgsType & ShiftMouseMovePixelPerDelta
(
TSharedRef< UserClass > InUserObjectRef, |
Bind attribute with delegate to a shared pointer-based class method. | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & ShiftMouseMovePixelPerDelta
(
UserClass* InUserObject, |
Bind attribute with delegate to a shared pointer-based class method. | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & ShiftMouseMovePixelPerDelta_Lambda
(
TFunction< int32(void) >&& InFunctor |
Bind attribute with delegate to a lambda * technically this works for any functor types, but lambdas are the primary use case | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & ShiftMouseMovePixelPerDelta_Raw
(
UserClass* InUserObject, |
Bind attribute with delegate to a raw C++ class method | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & ShiftMouseMovePixelPerDelta_Static
(
TIdentity_T< typename TAttribute< int32 >::FGetter::template TFuncPtr< VarTypes... > > InFunc, |
Bind attribute with delegate to a global function * NOTE: We use a template here to avoid 'typename' issues when hosting attributes inside templated classes | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & ShiftMouseMovePixelPerDelta_UObject
(
UserClass* InUserObject, |
Bind attribute with delegate to a UObject-based class method | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & ShiftMultiplier
(
const TAttribute< float >& InAttribute |
Multiplier to use when shift is held down | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & SliderExponent
(
const TAttribute< float >& InAttribute |
Use exponential scale for the slider | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & SliderExponentNeutralValue
(
const TAttribute< NumericType >& InAttribute |
When using exponential scale specify a neutral value where we want the maximum precision (by default it is the smallest slider value) | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & SpinBoxStyle
(
const FSpinBoxStyle* InArg |
Style to use for the spin box within this widget | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & SupportDynamicSliderMaxValue
(
const TAttribute< bool >& InAttribute |
Tell us if we want to support dynamically changing of the max value using ctrl (only use if there is a spinbox allow) | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & SupportDynamicSliderMinValue
(
const TAttribute< bool >& InAttribute |
Tell us if we want to support dynamically changing of the min value using ctrl (only use if there is a spinbox allow) | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & ToggleChecked
(
const TAttribute< ECheckBoxState >& InAttribute |
The value of the toggle checkbox | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & TogglePadding
(
FMargin InArg |
Padding around the toggle checkbox | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & ToolTipTextFormat
(
const TAttribute< TOptional< FTextFormat > >& InAttribute |
An optional format pattern that is used to format the ToolTipText. | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & TypeInterface
(
TSharedPtr< INumericTypeInterface< NumericType > > InArg |
Provide custom type conversion functionality to this spin box | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & UndeterminedString
(
FText InArg |
The string to display if the value cannot be determined | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & Value
(
const TAttribute< TOptional< NumericType > >& InAttribute |
The value that should be displayed. | Widgets/Input/SNumericEntryBox.h | |
WidgetArgsType & WheelStep
(
const TAttribute< TOptional< NumericType > >& InAttribute |
Step to increment or decrement the value by when scrolling the mouse wheel. | Widgets/Input/SNumericEntryBox.h |