Class ListViewBase
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 ListViewBase : Widget
Properties
| Improve this Doc View SourceDefaultObject
Get UE4 Default Object for this Class
Declaration
public static ListViewBase DefaultObject { get; }
Property Value
Type | Description |
---|---|
ListViewBase |
EntryWidgetClass
The type of widget to create for each entry displayed in the list.
Declaration
public SubclassOf<UserWidget> EntryWidgetClass { get; }
Property Value
Type | Description |
---|---|
SubclassOf<UserWidget> |
NumDesignerPreviewEntries
The number of dummy item entry widgets to preview in the widget designer
Declaration
public int NumDesignerPreviewEntries { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
StaticClass
Get UE4 Class
Declaration
public static Class StaticClass { get; }
Property Value
Type | Description |
---|---|
Class |
Methods
| Improve this Doc View SourceGetDisplayedEntryWidgets(Byte)
Gets all of the list entry widgets currently being displayed by the list
Declaration
public void GetDisplayedEntryWidgets(byte ReturnValue)
Parameters
Type | Name | Description |
---|---|---|
System.Byte | ReturnValue |
New(UObject, Name)
Spawn an object of this class
Declaration
public static ListViewBase New(UObject obj = null, Name name = default(Name))
Parameters
Type | Name | Description |
---|---|---|
UObject | obj | |
Name | name |
Returns
Type | Description |
---|---|
ListViewBase |
RegenerateAllEntries()
Full regeneration of all entries in the list.
Declaration
public void RegenerateAllEntries()
Remarks
Note that the entry UWidget instances will not be destroyed, but they will be released and re-generated. In other words, entry widgets will not receive Destruct/Construct events. They will receive OnEntryReleased and IUserObjectListEntry implementations will receive OnListItemObjectSet.
ScrollToBottom()
Scroll the entire list down to the bottom-most item
Declaration
public void ScrollToBottom()
ScrollToTop()
Scroll the entire list up to the first item
Declaration
public void ScrollToTop()
Operators
| Improve this Doc View SourceImplicit(IntPtr to ListViewBase)
Convert from IntPtr to UObject
Declaration
public static implicit operator ListViewBase(IntPtr p)
Parameters
Type | Name | Description |
---|---|---|
System.IntPtr | p |
Returns
Type | Description |
---|---|
ListViewBase |