className
stringlengths
1
167
headerPath
stringlengths
14
166
description
stringlengths
0
1.62k
module
stringlengths
0
76
code
stringlengths
0
11.4k
variables
listlengths
0
395
SSpinBox::ExitTextMode
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Make the spinbox switch to mouse-based input mode.
Slate
void ExitTextMode()
[]
SSpinBox::FArguments::AlwaysUsesDeltaSnap
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Whether typed values should use delta snapping, defaults to false
Slate
WidgetArgsType & AlwaysUsesDeltaSnap &40; const TAttribute< bool > & InAttribute &41;
[]
SSpinBox::FArguments::ClearKeyboardFocusOnCommit
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Whether to clear keyboard focus when pressing enter to commit changes
Slate
WidgetArgsType & ClearKeyboardFocusOnCommit &40; const TAttribute< bool > & InAttribute &41;
[]
SSpinBox::FArguments::BroadcastValueChangesPerKey
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
True to broadcast every time we type
Slate
WidgetArgsType & BroadcastValueChangesPerKey &40; bool InArg &41;
[]
SSpinBox::FArguments::ContentPadding
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Padding to add around this widget and its internal widgets
Slate
WidgetArgsType & ContentPadding &40; const TAttribute< FMargin > & InAttribute &41;
[]
SSpinBox::FArguments::ContextMenuExtender
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Menu extender for the right-click context menu
Slate
WidgetArgsType & ContextMenuExtender &40; const FMenuExtensionDelegate & InDelegate &41;
[]
SSpinBox::FArguments::Delta
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Delta to increment the value as the slider moves. If not specified will determine automatically
Slate
WidgetArgsType & Delta &40; const TAttribute< NumericType > & InAttribute &41;
[]
SSpinBox::FArguments::EnableSlider
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Whether this spin box should have slider feature enabled, defaults to true
Slate
WidgetArgsType & EnableSlider &40; const TAttribute< bool > & InAttribute &41;
[]
SSpinBox::FArguments::EnableWheel
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Whether this spin box should have mouse wheel feature enabled, defaults to true
Slate
WidgetArgsType & EnableWheel &40; bool InArg &41;
[]
SSpinBox::FArguments::Font
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Font used to display text in the slider
Slate
WidgetArgsType & Font &40; const TAttribute< FSlateFontInfo > & InAttribute &41;
[]
SSpinBox::FArguments::Justification
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
How should the value be justified in the spinbox.
Slate
WidgetArgsType & Justification &40; const TAttribute< ETextJustify::Type > & InAttribute &41;
[]
SSpinBox::FArguments::KeyboardType
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
What keyboard to display.
Slate
WidgetArgsType & KeyboardType &40; const TAttribute< EKeyboardType > & InAttribute &41;
[]
SSpinBox::FArguments::LinearDeltaSensitivity
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
If we're an unbounded spinbox, what value do we divide mouse movement by before multiplying by Delta. Requires Delta to be set.
Slate
WidgetArgsType & LinearDeltaSensitivity &40; const TAttribute< int32 > & InAttribute &41;
[]
SSpinBox::FArguments::MaxFractionalDigits
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
The maximum fractional digits the spin box displays, defaults to 6
Slate
WidgetArgsType & MaxFractionalDigits &40; const TAttribute< TOptional< int32 > > & InAttribute &41;
[]
SSpinBox::FArguments::MaxValue
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
The maximum value that can be entered into the text edit box
Slate
WidgetArgsType & MaxValue &40; const TAttribute< TOptional< NumericType > > & InAttribute &41;
[]
SSpinBox::FArguments::MaxSliderValue
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
The maximum value that can be specified by using the slider, defaults to MaxValue
Slate
WidgetArgsType & MaxSliderValue &40; const TAttribute< TOptional< NumericType > > & InAttribute &41;
[]
SSpinBox::FArguments::MinFractionalDigits
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
The minimum fractional digits the spin box displays, defaults to 1
Slate
WidgetArgsType & MinFractionalDigits &40; const TAttribute< TOptional< int32 > > & InAttribute &41;
[]
SSpinBox::FArguments::MinSliderValue
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
The minimum value that can be specified by using the slider, defaults to MinValue
Slate
WidgetArgsType & MinSliderValue &40; const TAttribute< TOptional< NumericType > > & InAttribute &41;
[]
SSpinBox::FArguments::MinDesiredWidth
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Minimum width that a spin box should be
Slate
WidgetArgsType & MinDesiredWidth &40; const TAttribute< float > & InAttribute &41;
[]
SSpinBox::FArguments::MinValue
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
The minimum value that can be entered into the text edit box
Slate
WidgetArgsType & MinValue &40; const TAttribute< TOptional< NumericType > > & InAttribute &41;
[]
SSpinBox::FArguments::OnDynamicSliderMaxValueChanged
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Called right after the max slider value is changed (only relevant if SupportDynamicSliderMaxValue is true)
Slate
WidgetArgsType & OnDynamicSliderMaxValueChanged &40; const FOnDynamicSliderMinMaxValueChanged & InDelegate &41;
[]
SSpinBox::FArguments::OnBeginSliderMovement
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Called right before the slider begins to move
Slate
WidgetArgsType & OnBeginSliderMovement &40; const FSimpleDelegate & InDelegate &41;
[]
SSpinBox::FArguments::OnDynamicSliderMinValueChanged
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Called right after the min slider value is changed (only relevant if SupportDynamicSliderMinValue is true)
Slate
WidgetArgsType & OnDynamicSliderMinValueChanged &40; const FOnDynamicSliderMinMaxValueChanged & InDelegate &41;
[]
SSpinBox::FArguments::OnValueChanged
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Called when the value is changed by slider or typing
Slate
WidgetArgsType & OnValueChanged &40; const FOnValueChanged & InDelegate &41;
[]
SSpinBox::FArguments::OnEndSliderMovement
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Called right after the slider handle is released by the user
Slate
WidgetArgsType & OnEndSliderMovement &40; const FOnValueChanged & InDelegate &41;
[]
SSpinBox::FArguments::OnValueCommitted
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Called when the value is committed (by pressing enter)
Slate
WidgetArgsType & OnValueCommitted &40; const FOnValueCommitted & InDelegate &41;
[]
SSpinBox::FArguments::PreventThrottling
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
If refresh requests for the viewport should happen for all value changes
Slate
WidgetArgsType & PreventThrottling &40; bool InArg &41;
[]
SSpinBox::FArguments::SelectAllTextOnCommit
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Whether to select all text when pressing enter to commit changes
Slate
WidgetArgsType & SelectAllTextOnCommit &40; const TAttribute< bool > & InAttribute &41;
[]
SSpinBox::FArguments::ShiftMouseMovePixelPerDelta
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
How many pixel the mouse must move to change the value of the delta step
Slate
WidgetArgsType & ShiftMouseMovePixelPerDelta &40; const TAttribute< int32 > & InAttribute &41;
[]
SSpinBox::FArguments::SliderExponent
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Use exponential scale for the slider
Slate
WidgetArgsType & SliderExponent &40; const TAttribute< float > & InAttribute &41;
[]
SSpinBox::FArguments::SliderExponentNeutralValue
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
When use exponential scale for the slider which is the neutral value
Slate
WidgetArgsType & SliderExponentNeutralValue &40; const TAttribute< NumericType > & InAttribute &41;
[]
SSpinBox::FArguments::Style
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
The style used to draw this spinbox
Slate
WidgetArgsType & Style &40; const FSpinBoxStyle &42; InArg &41;
[]
SSpinBox::FArguments::SupportDynamicSliderMaxValue
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Tell us if we want to support dynamically changing of the max value using ctrl
Slate
WidgetArgsType & SupportDynamicSliderMaxValue &40; const TAttribute< bool > & InAttribute &41;
[]
SSpinBox::FArguments::SupportDynamicSliderMinValue
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Tell us if we want to support dynamically changing of the min value using ctrl
Slate
WidgetArgsType & SupportDynamicSliderMinValue &40; const TAttribute< bool > & InAttribute &41;
[]
SSpinBox::FArguments::TypeInterface
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Provide custom type conversion functionality to this spin box
Slate
WidgetArgsType & TypeInterface &40; TSharedPtr< INumericTypeInterface< NumericType > > InArg &41;
[]
SSpinBox::FArguments::Value
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
The value to display
Slate
WidgetArgsType & Value &40; const TAttribute< NumericType > & InAttribute &41;
[]
SSpinBox::FArguments::WheelStep
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Step to increment or decrement the value by when scrolling the mouse wheel. If not specified will determine automatically
Slate
WidgetArgsType & WheelStep &40; const TAttribute< TOptional< NumericType > > & InAttribute &41;
[]
WidgetArgsType
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
typedef FArguments WidgetArgsType
[]
SSpinBox::FArguments::FArguments
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
FArguments&40;&41;
[]
FArguments
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
struct FArguments : public [TSlateBaseNamedArgs< SSpinBox< NumericType > >](API\Runtime\SlateCore\Widgets\TSlateBaseNamedArgs)
[]
FOnDynamicSliderMinMaxValueChanged
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Notification when the max/min spinner values are changed (only apply if SupportDynamicSliderMaxValue or SupportDynamicSliderMinValue are true)
Slate
typedef TBaseDelegate_FourParams< void, NumericType, [TWeakPtr](API\Runtime\Core\Templates\TWeakPtr)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) >, bool, bool > FOnDynamicSliderMinMaxValueChanged
[]
FOnValueChanged
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Notification for numeric value change
Slate
typedef TBaseDelegate_OneParam< void, NumericType > FOnValueChanged
[]
SSpinBox::Fraction
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Calculates range fraction. Possible to use on full numeric range
Slate
static float Fraction ( double InValue, double InMinValue, double InMaxValue )
[]
SSpinBox::GetAlwaysUsesDeltaSnap
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
See the AlwaysUsesDeltaSnap attribute
Slate
bool GetAlwaysUsesDeltaSnap() const
[]
SSpinBox::GetDelta
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
See the Delta attribute
Slate
NumericType GetDelta() const
[]
SSpinBox::GetEnableSlider
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
See the EnableSlider attribute
Slate
bool GetEnableSlider() const
[]
SSpinBox::GetMaxFractionalDigits
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
See the MaxFractionalDigits attribute
Slate
int32 GetMaxFractionalDigits() const
[]
SSpinBox::GetMaxSliderValue
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
NumericType GetMaxSliderValue() const
[]
SSpinBox::GetMaxValue
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
See the MaxValue attribute
Slate
NumericType GetMaxValue() const
[]
SSpinBox::GetMinDesiredWidth
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
See the MinDesiredWidth attribute
Slate
float GetMinDesiredWidth() const
[]
SSpinBox::GetMinSliderValue
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
NumericType GetMinSliderValue() const
[]
SSpinBox::GetMinFractionalDigits
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
See the MinFractionalDigits attribute
Slate
int32 GetMinFractionalDigits() const
[]
FOnValueCommitted
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Notification for numeric value committed
Slate
typedef TBaseDelegate_TwoParams< void, NumericType, [ETextCommit::Type](API\Runtime\SlateCore\Types\ETextCommit__Type) > FOnValueCommitted
[]
SSpinBox::GetMinValue
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
See the MinValue attribute
Slate
NumericType GetMinValue() const
[]
SSpinBox::GetSliderExponent
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
See the SliderExponent attribute
Slate
float GetSliderExponent() const
[]
SSpinBox::GetValue
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
See the Value attribute
Slate
NumericType GetValue() const
[]
SSpinBox::GetValueAsString
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
the value being observed by the spinbox as a string
Slate
[FString](API\Runtime\Core\Containers\FString) GetValueAsString() const
[]
SSpinBox::GetValueAsText
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
the value being observed by the spinbox asFText- todo: spinboxFTextsupport (reimplement me)
Slate
[FText](API\Runtime\Core\Internationalization\FText) GetValueAsText() const
[]
SSpinBox::GetValueAttribute
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Return the Value attribute
Slate
[TAttribute](API\Runtime\Core\Misc\TAttribute)< NumericType > GetValueAttribute() const
[]
SSpinBox::GetWidgetStyle
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
const [FSpinBoxStyle](API\Runtime\SlateCore\Styling\FSpinBoxStyle) * GetWidgetStyle() const
[]
SSpinBox::HasKeyboardFocus
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Checks to see if this widget currently has the keyboard focus True if this widget has keyboard focus
Slate
virtual bool HasKeyboardFocus() const
[]
SSpinBox::InvalidateStyle
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void InvalidateStyle()
[]
SSpinBox::IsInTextMode
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
true when we are in keyboard-based input mode; false otherwise
Slate
bool IsInTextMode() const
[]
SSpinBox::IsMaxSliderValueBound
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
See the MaxSliderValue attribute
Slate
bool IsMaxSliderValueBound() const
[]
SSpinBox::IsMinSliderValueBound
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
See the MinSliderValue attribute
Slate
bool IsMinSliderValueBound() const
[]
SSpinBox::NotifyValueCommitted
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void NotifyValueCommitted ( NumericType CurrentValue ) const
[]
SSpinBox::OnCursorQuery
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
The system asks each widget under the mouse to provide a cursor. This event is bubbled.FCursorReply::Unhandled()if the event is not handled; returnFCursorReply::Cursor()otherwise.
Slate
virtual [FCursorReply](API\Runtime\SlateCore\Input\FCursorReply) OnCursorQuery ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FPointerEvent](API\Runtime\SlateCore\Input\FPointerEvent) & CursorEvent ) const
[]
SSpinBox::OnFocusReceived
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
KEY INPUT Called when focus is given to this widget. This event does not bubble. Returns whether the event was handled, along with other possible actions
Slate
virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnFocusReceived ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FFocusEvent](API\Runtime\SlateCore\Input\FFocusEvent) & InFocusEvent )
[]
SSpinBox::OnKeyDown
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Called after a key is pressed when this widget has focus (this event bubbles if not handled) Returns whether the event was handled, along with other possible actions
Slate
virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnKeyDown ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FKeyEvent](API\Runtime\SlateCore\Input\FKeyEvent) & InKeyEvent )
[]
SSpinBox::OnMouseButtonDown
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
The system calls this method to notify the widget that a mouse button was pressed within it. This event is bubbled. Whether the event was handled along with possible requests for the system to take action.
Slate
virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnMouseButtonDown ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FPointerEvent](API\Runtime\SlateCore\Input\FPointerEvent) & MouseEvent )
[]
SSpinBox::OnMouseButtonUp
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
The system calls this method to notify the widget that a mouse button was release within it. This event is bubbled. Whether the event was handled along with possible requests for the system to take action.
Slate
virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnMouseButtonUp ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FPointerEvent](API\Runtime\SlateCore\Input\FPointerEvent) & MouseEvent )
[]
SSpinBox::OnMouseMove
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
The system calls this method to notify the widget that a mouse moved within it. This event is bubbled. Whether the event was handled along with possible requests for the system to take action.
Slate
virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnMouseMove ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FPointerEvent](API\Runtime\SlateCore\Input\FPointerEvent) & MouseEvent )
[]
SSpinBox::OnMouseWheel
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Called when the mouse wheel is spun. This event is bubbled. Returns whether the event was handled, along with other possible actions
Slate
virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnMouseWheel ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FPointerEvent](API\Runtime\SlateCore\Input\FPointerEvent) & MouseEvent )
[]
SSpinBox::OnPaint
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
The widget should respond by populating the OutDrawElements array with FDrawElements that represent it and any of its children. Called by the non-virtual OnPaint to enforce pre/post conditions during OnPaint. The maximum layer ID attained by this widget or any of its children.
Slate
virtual int32 OnPaint ( const [FPaintArgs](API\Runtime\SlateCore\Types\FPaintArgs) & Args, const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & AllottedGeometry, const [FSlateRect](API\Runtime\SlateCore\Layout\FSlateRect) & MyCullingRect, [FSlateWindowElementList](API\Runtime\SlateCore\Rendering\FSlateWindowElementList) & OutDrawElements, int32 LayerId, const [FWidgetStyle](API\Runtime\SlateCore\Styling\FWidgetStyle) & InWidgetStyle, bool bParentEnabled ) const
[]
SSpinBox::SetDelta
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void SetDelta ( NumericType InDelta )
[]
SSpinBox::SetAlwaysUsesDeltaSnap
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void SetAlwaysUsesDeltaSnap ( bool bNewValue )
[]
SSpinBox::SetEnableSlider
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void SetEnableSlider ( bool bNewValue )
[]
SSpinBox::SetMaxFractionalDigits
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void SetMaxFractionalDigits ( const [TAttribute](API\Runtime\Core\Misc\TAttribute)< [TOptional](API\Runtime\Core\IO\TOptional)< int32 >> & InMaxFractionalDigits )
[]
SSpinBox::SetMaxSliderValue
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void SetMaxSliderValue ( const [TAttribute](API\Runtime\Core\Misc\TAttribute)< [TOptional](API\Runtime\Core\IO\TOptional)< NumericType >> & InMaxSliderValue )
[]
SSpinBox::SetMaxValue
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void SetMaxValue ( const [TAttribute](API\Runtime\Core\Misc\TAttribute)< [TOptional](API\Runtime\Core\IO\TOptional)< NumericType >> & InMaxValue )
[]
SSpinBox::SetMinDesiredWidth
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void SetMinDesiredWidth ( const [TAttribute](API\Runtime\Core\Misc\TAttribute)< float > & InMinDesiredWidth )
[]
SSpinBox::SetMinFractionalDigits
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void SetMinFractionalDigits ( const [TAttribute](API\Runtime\Core\Misc\TAttribute)< [TOptional](API\Runtime\Core\IO\TOptional)< int32 >> & InMinFractionalDigits )
[]
SSpinBox::SetMinSliderValue
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void SetMinSliderValue ( const [TAttribute](API\Runtime\Core\Misc\TAttribute)< [TOptional](API\Runtime\Core\IO\TOptional)< NumericType >> & InMinSliderValue )
[]
SSpinBox::SetSliderExponent
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void SetSliderExponent ( const [TAttribute](API\Runtime\Core\Misc\TAttribute)< float > & InSliderExponent )
[]
SSpinBox::SetTextBlockFont
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void SetTextBlockFont ( [FSlateFontInfo](API\Runtime\SlateCore\Fonts\FSlateFontInfo) InFont )
[]
SSpinBox::SetTextClearKeyboardFocusOnCommit
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void SetTextClearKeyboardFocusOnCommit ( bool bNewValue )
[]
SSpinBox::SetTextSelectAllTextOnCommit
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void SetTextSelectAllTextOnCommit ( bool bNewValue )
[]
SSpinBox::SetValue
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void SetValue ( const [TAttribute](API\Runtime\Core\Misc\TAttribute)< NumericType > & InValueAttribute )
[]
SSpinBox::SetMinValue
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void SetMinValue ( const [TAttribute](API\Runtime\Core\Misc\TAttribute)< [TOptional](API\Runtime\Core\IO\TOptional)< NumericType >> & InMinValue )
[]
SSpinBox::SetWidgetStyle
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void SetWidgetStyle ( const [FSpinBoxStyle](API\Runtime\SlateCore\Styling\FSpinBoxStyle) * InStyle )
[]
SSpinBox::SupportsKeyboardFocus
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Checks to see if this widget supports keyboard focus. Override this in derived classes. True if this widget can take keyboard focus
Slate
virtual bool SupportsKeyboardFocus() const
[]
SSpinBox::TextField_OnTextChanged
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Invoked when the text in the text field changes
Slate
void TextField_OnTextChanged ( const [FText](API\Runtime\Core\Internationalization\FText) & NewText )
[]
SSpinBox::TextField_OnTextCommitted
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Invoked when the text field commits its text.
Slate
void TextField_OnTextCommitted ( const [FText](API\Runtime\Core\Internationalization\FText) & NewText, [ETextCommit::Type](API\Runtime\SlateCore\Types\ETextCommit__Type) CommitInfo )
[]
SSpinBox::SetTextJustification
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
void SetTextJustification ( [ETextJustify::Type](API\Runtime\Slate\Framework\Text\ETextJustify__Type) InJustification )
[]
SSpinBox::SSpinBox
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
Slate
SSpinBox()
[]
SSpinBox
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSpinBox.h
A Slate SpinBox resembles traditional spin boxes in that it is a widget that provides keyboard-based and mouse-based manipulation of a numeric value. Mouse-based manipulation: drag anywhere on the spinbox to change the value. Keyboard-based manipulation: click on the spinbox to enter text mode.
Slate
template<typename NumericType> class SSpinBox : public [SCompoundWidget](API\Runtime\SlateCore\Widgets\SCompoundWidget)
[]
SSubMenuHandler::CancelPendingSubMenu
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSubMenuHandler.h
Cancels any open requests to toggle a sub-menu
Slate
void CancelPendingSubMenu()
[]
SSubMenuHandler::Construct
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSubMenuHandler.h
Slate
void Construct ( const [FArguments](API\Runtime\Slate\Widgets\Input\SSubMenuHandler\FArguments) & InArgs, [TWeakPtr](API\Runtime\Core\Templates\TWeakPtr)< [SMenuOwner](API\Runtime\Slate\Widgets\Layout\SMenuOwner) > InMenuOwner )
[]
SSubMenuHandler::FArguments::Content
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSubMenuHandler.h
Slate
NamedSlotProperty< FArguments > Content&40;&41;
[]
SSubMenuHandler::FArguments::MenuAnchor
/Engine/Source/Runtime/Slate/Public/Widgets/Input/SSubMenuHandler.h
Slate
WidgetArgsType & MenuAnchor &40; TSharedPtr< SMenuAnchor > InArg &41;
[]