Table of Contents

Enum SelectorStyles

Namespace
Terminal.Gui.Views
Assembly
Terminal.Gui.dll
[Flags]
public enum SelectorStyles

Fields

All = ShowNoneFlag | ShowAllFlag | ShowValue

All styles.

None = 0

No styles.

ShowAllFlag = 2

Show the All checkbox. This will add a checkbox with the title "All" that when checked will cause all flags to be set. Unchecking the "All" checkbox will set the value to 0. Valid only for FlagSelector and FlagSelector<TFlagsEnum>

ShowNoneFlag = 1

Show the None checkbox. This will add a checkbox with the title "None" that when checked will cause the value to be set to 0. The None checkbox will be added even if the flags do not contain a value of 0. Valid only for FlagSelector and FlagSelector<TFlagsEnum>

ShowValue = 4

Show the value field. This will add a read-only TextField to the FlagSelector to allow the user to see the value.