Table of Contents

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

GetOrSetMemberFunc Func<object, int, object>

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

bool

Text

The display name/text of the entry in the UI.

public RichText Text { get; set; }

Property Value

RichText