Show / Hide Table of Contents

Class SpinBox

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

Inheritance
System.Object
UObject
Visual
Widget
SpinBox
Inherited Members
Widget.ForceLayoutPrepass()
Widget.ForceVolatile(Boolean)
Widget.GetCachedGeometry(Geometry)
Widget.GetClipping()
Widget.GetDesiredSize()
Widget.GetIsEnabled()
Widget.GetOwningLocalPlayer()
Widget.GetOwningPlayer()
Widget.GetParent()
Widget.GetRenderOpacity()
Widget.GetVisibility()
Widget.HasAnyUserFocus()
Widget.HasFocusedDescendants()
Widget.HasKeyboardFocus()
Widget.HasMouseCapture()
Widget.HasMouseCaptureByUser(Int32, Int32)
Widget.HasUserFocus(PlayerController)
Widget.HasUserFocusedDescendants(PlayerController)
Widget.InvalidateLayoutAndVolatility()
Widget.IsHovered()
Widget.IsVisible()
Widget.RemoveFromParent()
Widget.ResetCursor()
Widget.SetAllNavigationRules(EUINavigationRule, Name)
Widget.SetClipping(EWidgetClipping)
Widget.SetCursor(Byte)
Widget.SetIsEnabled(Boolean)
Widget.SetKeyboardFocus()
Widget.SetNavigationRule(EUINavigation, EUINavigationRule, Name)
Widget.SetRenderAngle(Single)
Widget.SetRenderOpacity(Single)
Widget.SetRenderScale(Vector2D)
Widget.SetRenderShear(Vector2D)
Widget.SetRenderTransform(WidgetTransform)
Widget.SetRenderTransformPivot(Vector2D)
Widget.SetRenderTranslation(Vector2D)
Widget.SetToolTip(Widget)
Widget.SetToolTipText(Byte)
Widget.SetUserFocus(PlayerController)
Widget.SetVisibility(ESlateVisibility)
Widget.Slot
Widget.ToolTipWidget
Widget.RenderTransform
Widget.RenderTransformPivot
Widget.bIsVariable
Widget.bCreatedByConstructionScript
Widget.bIsEnabled
Widget.bOverride_Cursor
Widget.bIsVolatile
Widget.bHiddenInDesigner
Widget.bExpandedInDesigner
Widget.bLockedInDesigner
Widget.Cursor
Widget.RenderOpacity
Widget.Navigation
Widget.NativeBindings
Widget.DesignerFlags
UObject.TransientPackage
UObject.CastTo<T>(UObject)
UObject.CastTo(UObject, Type)
UObject.RemoveObject(UObject)
UObject.MakeObjectArrayField<T>(NativeArray*)
UObject.NotImplemented<T>()
UObject.Construct()
UObject.GetHashCode()
UObject.GetName()
UObject.ToString()
UObject.Name
UObject._None
UObject.None
UObject.ObjPointer
UObject.LoadObjectFromClass(Class, UObject, String, String, LoadFlags, PackageMap, Boolean)
UObject.LoadClass(Class, UObject, String, String, LoadFlags, PackageMap)
UObject.GetPropertyFor<T>(Name)
UObject.ExecuteUbergraph
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: UE4.UMG
Assembly: UE4DotNet.dll
Syntax
public class SpinBox : Widget

Properties

| Improve this Doc View Source

bOverride_MaxSliderValue

Declaration
public bool bOverride_MaxSliderValue { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

bOverride_MaxValue

Declaration
public bool bOverride_MaxValue { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

bOverride_MinSliderValue

Declaration
public bool bOverride_MinSliderValue { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

bOverride_MinValue

Declaration
public bool bOverride_MinValue { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

ClearKeyboardFocusOnCommit

Declaration
public bool ClearKeyboardFocusOnCommit { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

DefaultObject

Get UE4 Default Object for this Class

Declaration
public static SpinBox DefaultObject { get; }
Property Value
Type Description
SpinBox
| Improve this Doc View Source

Delta

The amount by which to change the spin box value as the slider moves.

Declaration
public float Delta { get; }
Property Value
Type Description
System.Single
| Improve this Doc View Source

Font

Font color and opacity (overrides style)

Declaration
public SlateFontInfo Font { get; }
Property Value
Type Description
SlateFontInfo
| Improve this Doc View Source

ForegroundColor

Foreground Color

Declaration
public SlateColor ForegroundColor { get; }
Property Value
Type Description
SlateColor
| Improve this Doc View Source

Justification

The justification the value text should appear as.

Declaration
public byte Justification { get; }
Property Value
Type Description
System.Byte
| Improve this Doc View Source

MaxSliderValue

The maximum allowable value that can be specified using the slider

Declaration
public float MaxSliderValue { get; set; }
Property Value
Type Description
System.Single
| Improve this Doc View Source

MaxValue

The maximum allowable value that can be manually entered into the spin box

Declaration
public float MaxValue { get; set; }
Property Value
Type Description
System.Single
| Improve this Doc View Source

MinDesiredWidth

The minimum width of the spin box

Declaration
public float MinDesiredWidth { get; }
Property Value
Type Description
System.Single
| Improve this Doc View Source

MinSliderValue

The minimum allowable value that can be specified using the slider

Declaration
public float MinSliderValue { get; set; }
Property Value
Type Description
System.Single
| Improve this Doc View Source

MinValue

The minimum allowable value that can be manually entered into the spin box

Declaration
public float MinValue { get; set; }
Property Value
Type Description
System.Single
| Improve this Doc View Source

SelectAllTextOnCommit

Declaration
public bool SelectAllTextOnCommit { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

SliderExponent

The exponent by which to increase the delta as the mouse moves. 1 is constant (never increases the delta).

Declaration
public float SliderExponent { get; }
Property Value
Type Description
System.Single
| Improve this Doc View Source

StaticClass

Get UE4 Class

Declaration
public static Class StaticClass { get; }
Property Value
Type Description
Class
| Improve this Doc View Source

Value

Value stored in this spin box

Declaration
public float Value { get; set; }
Property Value
Type Description
System.Single
| Improve this Doc View Source

WidgetStyle

The Style

Declaration
public SpinBoxStyle WidgetStyle { get; set; }
Property Value
Type Description
SpinBoxStyle

Methods

| Improve this Doc View Source

ClearMaxSliderValue()

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

Declaration
public void ClearMaxSliderValue()
| Improve this Doc View Source

ClearMaxValue()

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

Declaration
public void ClearMaxValue()
| Improve this Doc View Source

ClearMinSliderValue()

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

Declaration
public void ClearMinSliderValue()
| Improve this Doc View Source

ClearMinValue()

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

Declaration
public void ClearMinValue()
| Improve this Doc View Source

GetMaxSliderValue()

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

Declaration
public float GetMaxSliderValue()
Returns
Type Description
System.Single
| Improve this Doc View Source

GetMaxValue()

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

Declaration
public float GetMaxValue()
Returns
Type Description
System.Single
| Improve this Doc View Source

GetMinSliderValue()

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

Declaration
public float GetMinSliderValue()
Returns
Type Description
System.Single
| Improve this Doc View Source

GetMinValue()

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

Declaration
public float GetMinValue()
Returns
Type Description
System.Single
| Improve this Doc View Source

GetValue()

Get the current value of the spin box.

Declaration
public float GetValue()
Returns
Type Description
System.Single
| Improve this Doc View Source

New(UObject, Name)

Spawn an object of this class

Declaration
public static SpinBox New(UObject obj = null, Name name = default(Name))
Parameters
Type Name Description
UObject obj
Name name
Returns
Type Description
SpinBox
| Improve this Doc View Source

SetForegroundColor(SlateColor)

Set Foreground Color

Declaration
public void SetForegroundColor(SlateColor InForegroundColor)
Parameters
Type Name Description
SlateColor InForegroundColor
| Improve this Doc View Source

SetMaxSliderValue(Single)

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

Declaration
public void SetMaxSliderValue(float NewValue)
Parameters
Type Name Description
System.Single NewValue
| Improve this Doc View Source

SetMaxValue(Single)

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

Declaration
public void SetMaxValue(float NewValue)
Parameters
Type Name Description
System.Single NewValue
| Improve this Doc View Source

SetMinSliderValue(Single)

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

Declaration
public void SetMinSliderValue(float NewValue)
Parameters
Type Name Description
System.Single NewValue
| Improve this Doc View Source

SetMinValue(Single)

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

Declaration
public void SetMinValue(float NewValue)
Parameters
Type Name Description
System.Single NewValue
| Improve this Doc View Source

SetValue(Single)

Set the value of the spin box.

Declaration
public void SetValue(float NewValue)
Parameters
Type Name Description
System.Single NewValue

Operators

| Improve this Doc View Source

Implicit(IntPtr to SpinBox)

Convert from IntPtr to UObject

Declaration
public static implicit operator SpinBox(IntPtr p)
Parameters
Type Name Description
System.IntPtr p
Returns
Type Description
SpinBox
  • Improve this Doc
  • View Source
Back to top Generated by DocFX