AccessibleSelection.cs 666 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // System.Windows.Forms.AccessibleSelection.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 how an accessible object is selected or receives focus.
  13. /// This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
  14. /// </summary>
  15. [Flags]
  16. //[Serializable]
  17. public enum AccessibleSelection {
  18. AddSelection = 1,
  19. ExtendSelection = 2,
  20. None = 0,
  21. RemoveSelection = 4,
  22. TakeFocus = 8,
  23. TakeSelection = 16
  24. }
  25. }