Class Slider
A simple widget that shows a sliding bar with a handle that allows you to control the value between 0.
Inheritance
System.Object
Slider
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 Slider : Widget
Properties
|
Improve this Doc
View Source
DefaultObject
Get UE4 Default Object for this Class
Declaration
public static Slider DefaultObject { get; }
Property Value
|
Improve this Doc
View Source
IndentHandle
Declaration
public bool IndentHandle { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
IsFocusable
Declaration
public bool IsFocusable { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Locked
Declaration
public bool Locked { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
MouseUsesStep
Declaration
public bool MouseUsesStep { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Orientation
The slider's orientation.
Declaration
public byte Orientation { get; }
Property Value
Type |
Description |
System.Byte |
|
|
Improve this Doc
View Source
RequiresControllerLock
Declaration
public bool RequiresControllerLock { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
SliderBarColor
The color to draw the slider bar in.
Declaration
public LinearColor SliderBarColor { get; }
Property Value
|
Improve this Doc
View Source
SliderHandleColor
The color to draw the slider handle in.
Declaration
public LinearColor SliderHandleColor { get; }
Property Value
|
Improve this Doc
View Source
StaticClass
Declaration
public static Class StaticClass { get; }
Property Value
|
Improve this Doc
View Source
StepSize
The amount to adjust the value by, when using a controller or keyboard
Declaration
public float StepSize { get; }
Property Value
Type |
Description |
System.Single |
|
|
Improve this Doc
View Source
Value
The volume value to display.
Declaration
public float Value { get; set; }
Property Value
Type |
Description |
System.Single |
|
|
Improve this Doc
View Source
Declaration
public SliderStyle WidgetStyle { get; set; }
Property Value
Methods
|
Improve this Doc
View Source
GetValue()
Gets the current value of the slider.
Declaration
Returns
Type |
Description |
System.Single |
|
|
Improve this Doc
View Source
New(UObject, Name)
Spawn an object of this class
Declaration
public static Slider New(UObject obj = null, Name name = default(Name))
Parameters
Returns
|
Improve this Doc
View Source
SetIndentHandle(Boolean)
Sets if the slidable area should be indented to fit the handle
Declaration
public void SetIndentHandle(bool InValue)
Parameters
Type |
Name |
Description |
System.Boolean |
InValue |
|
|
Improve this Doc
View Source
SetLocked(Boolean)
Sets the handle to be interactive or fixed
Declaration
public void SetLocked(bool InValue)
Parameters
Type |
Name |
Description |
System.Boolean |
InValue |
|
|
Improve this Doc
View Source
SetSliderBarColor(LinearColor)
Sets the color of the slider bar
Declaration
public void SetSliderBarColor(LinearColor InValue)
Parameters
|
Improve this Doc
View Source
SetSliderHandleColor(LinearColor)
Sets the color of the handle bar
Declaration
public void SetSliderHandleColor(LinearColor InValue)
Parameters
|
Improve this Doc
View Source
SetStepSize(Single)
Sets the amount to adjust the value by, when using a controller or keyboard
Declaration
public void SetStepSize(float InValue)
Parameters
Type |
Name |
Description |
System.Single |
InValue |
|
|
Improve this Doc
View Source
SetValue(Single)
Sets the current value of the slider.
Declaration
public void SetValue(float InValue)
Parameters
Type |
Name |
Description |
System.Single |
InValue |
|
Operators
|
Improve this Doc
View Source
Implicit(IntPtr to Slider)
Convert from IntPtr to UObject
Declaration
public static implicit operator Slider(IntPtr p)
Parameters
Type |
Name |
Description |
System.IntPtr |
p |
|
Returns