Class EntryData<T>
- Namespace
- RichHudFramework.UI
- Assembly
- RichHudClient.dll
Represents a single entry in a ListBox or Dropdown.
public class EntryData<T>
Type Parameters
T
- Inheritance
-
EntryData<T>
Constructors
EntryData(Func<object, int, object>)
public EntryData(Func<object, int, object> GetOrSetMemberFunc)
Parameters
Properties
AssocObject
The generic data object associated with this entry.
public T AssocObject { get; set; }
Property Value
- T
Enabled
Indicates whether or not the element is visible in the list.
public bool Enabled { get; set; }
Property Value
Text
The display name/text of the entry in the UI.
public RichText Text { get; set; }