Enum HudValueKind
The engine-agnostic classification of a bound member's value, used to decide which representations may render it. Concrete CLR types are mapped onto this by the binding layer so the rules stay testable without reflection.
Namespace: Serenity.GameUi.Domain.Types
Assembly: Serenity.GameUi.Domain.dll
Syntax
public enum HudValueKind
Fields
| Name | Description |
|---|---|
| BOOLEAN | A true/false value. |
| DECIMAL | A real number. |
| INTEGER | A whole number. |
| TEXT | Text. |
| UNKNOWN | The value could not be classified; only a raw text representation applies. |