Table of Contents

Property Values

Namespace
Terminal.Gui.Input
Assembly
Terminal.Gui.dll

Values

Gets all values accumulated as the command propagated up the view hierarchy. Each IValue-implementing view in the chain appends its value via GetValue() as the command bubbles up. The list is ordered from innermost (originator) to outermost (last composite to append).

IReadOnlyList<object?> Values { get; }

Property Value

IReadOnlyList<object>

Remarks

Use Value as a shortcut to access the most recently appended value (Values[^1]), which is typically the outermost composite's value.

Will be empty if no IValue-implementing views participated.

See Also