CheckState.cs 566 B

123456789101112131415161718192021222324252627
  1. //
  2. // System.Windows.Forms.CheckState.cs
  3. //
  4. // Author:
  5. // Jaak Simm ([email protected])
  6. // Dennis Hayes ([email protected])
  7. // (C) 2002 Ximian, Inc. http://www.ximian.com
  8. //
  9. using System;
  10. namespace System.Windows.Forms {
  11. /// <summary>
  12. /// Specifies the state of a control, such as a check box,
  13. /// that can be checked, unchecked, or set to an indeterminate state.
  14. /// </summary>
  15. //[Serializable]
  16. public enum CheckState {
  17. //Values were verified with enumcheck.
  18. Unchecked = 0,
  19. Checked = 1,
  20. Indeterminate = 2,
  21. }
  22. }