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
SpinBox
Inherited Members
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)
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
|
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
|
Improve this Doc
View Source
ForegroundColor
Declaration
public SlateColor ForegroundColor { get; }
Property Value
|
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
Declaration
public static Class StaticClass { get; }
Property Value
|
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
Declaration
public SpinBoxStyle WidgetStyle { get; set; }
Property Value
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
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
Returns
|
Improve this Doc
View Source
SetForegroundColor(SlateColor)
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