Class ScrollBar
Scroll Bar
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)
Namespace: UE4.UMG
Assembly: UE4DotNet.dll
Syntax
public class ScrollBar : Widget
Properties
| Improve this Doc View SourcebAlwaysShowScrollbar
Declaration
public bool bAlwaysShowScrollbar { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
DefaultObject
Get UE4 Default Object for this Class
Declaration
public static ScrollBar DefaultObject { get; }
Property Value
Type | Description |
---|---|
ScrollBar |
Orientation
Orientation
Declaration
public byte Orientation { get; set; }
Property Value
Type | Description |
---|---|
System.Byte |
StaticClass
Get UE4 Class
Declaration
public static Class StaticClass { get; }
Property Value
Type | Description |
---|---|
Class |
Thickness
The thickness of the scrollbar thumb
Declaration
public Vector2D Thickness { get; set; }
Property Value
Type | Description |
---|---|
Vector2D |
WidgetStyle
Style of the scrollbar
Declaration
public ScrollBarStyle WidgetStyle { get; set; }
Property Value
Type | Description |
---|---|
ScrollBarStyle |
Methods
| Improve this Doc View SourceNew(UObject, Name)
Spawn an object of this class
Declaration
public static ScrollBar New(UObject obj = null, Name name = default(Name))
Parameters
Type | Name | Description |
---|---|---|
UObject | obj | |
Name | name |
Returns
Type | Description |
---|---|
ScrollBar |
SetState(Single, Single)
Set the offset and size of the track's thumb.
Declaration
public void SetState(float InOffsetFraction, float InThumbSizeFraction)
Parameters
Type | Name | Description |
---|---|---|
System.Single | InOffsetFraction | |
System.Single | InThumbSizeFraction |
Remarks
Note that the maximum offset is 1.0-ThumbSizeFraction. If the user can view 1/3 of the items in a single page, the maximum offset will be ~0.667f
@param InOffsetFraction Offset of the thumbnail from the top as a fraction of the total available scroll space. @param InThumbSizeFraction Size of thumbnail as a fraction of the total available scroll space.
Operators
| Improve this Doc View SourceImplicit(IntPtr to ScrollBar)
Convert from IntPtr to UObject
Declaration
public static implicit operator ScrollBar(IntPtr p)
Parameters
Type | Name | Description |
---|---|---|
System.IntPtr | p |
Returns
Type | Description |
---|---|
ScrollBar |