CheckState.cs 398 B

1234567891011121314151617181920212223
  1. #nullable enable
  2. namespace Terminal.Gui;
  3. /// <summary>
  4. /// Represents the state of a <see cref="CheckBox"/>.
  5. /// </summary>
  6. public enum CheckState
  7. {
  8. /// <summary>
  9. /// Neither checked nor unchecked.
  10. /// </summary>
  11. None,
  12. /// <summary>
  13. /// Checked.
  14. /// </summary>
  15. Checked,
  16. /// <summary>
  17. /// Not checked.
  18. /// </summary>
  19. UnChecked
  20. }