EditorBrowsableState.cs 760 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // ProjectData.cs
  3. //
  4. // Author:
  5. // Martin Adoue ([email protected])
  6. //
  7. // (C) 2002 Martin Adoue
  8. //
  9. using System;
  10. namespace System.ComponentModel
  11. {
  12. /// <summary>
  13. /// Specifies the browsable state of a property or method from within an editor.
  14. /// </summary>
  15. public enum EditorBrowsableState
  16. {
  17. /// <summary>
  18. /// The property or method is always browsable from within an editor.
  19. /// </summary>
  20. Always = 0,
  21. /// <summary>
  22. /// The property or method is never browsable from within an editor.
  23. /// </summary>
  24. Never = 1,
  25. /// <summary>
  26. /// The property or method is a feature that only advanced users should see. An editor can either show or hide such properties.
  27. /// </summary>
  28. Advanced = 2
  29. }
  30. }