SelectionRules.cs 454 B

1234567891011121314151617181920212223242526
  1. //
  2. // System.Windows.Forms.Design.SelectionRules.cs
  3. //
  4. // Author:
  5. // Gert Driesen ([email protected])
  6. // (C) 2004 Ximian, Inc. http://www.ximian.com
  7. //
  8. using System;
  9. namespace System.Windows.Forms.Design
  10. {
  11. [Flags]
  12. public enum SelectionRules
  13. {
  14. AllSizeable = 15,
  15. BottomSizeable = 2,
  16. LeftSizeable = 4,
  17. Locked = -2147483648,
  18. Moveable = 268435456,
  19. None = 0,
  20. RightSizeable = 8,
  21. TopSizeable = 1,
  22. Visible = 1073741824
  23. }
  24. }