Enum SelectorStyles
Styles for FlagSelector<TFlagsEnum> and OptionSelector<TEnum>.
[Flags]
public enum SelectorStyles
Fields
All = ShowNoneFlag | ShowAllFlag | ShowValueAll styles.
None = 0No styles.
ShowAllFlag = 2Show the
Allcheckbox. 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 = 1Show the
Nonecheckbox. This will add a checkbox with the title "None" that when checked will cause the value to be set to 0. TheNonecheckbox will be added even if the flags do not contain a value of 0. Valid only for FlagSelector and FlagSelector<TFlagsEnum>ShowValue = 4Show the value field. This will add a read-only TextField to the FlagSelector to allow the user to see the value.