ContentAlignment.cs 626 B

1234567891011121314151617181920212223242526
  1. //
  2. // System.Drawing.ContentAlignment.cs
  3. //
  4. // (C) 2001 Ximian, Inc. http://www.ximian.com
  5. // Author: Dennis Hayes ([email protected])
  6. //
  7. using System;
  8. using System.ComponentModel;
  9. namespace System.Drawing
  10. {
  11. [Serializable]
  12. [Editor ("System.Drawing.Design.ContentAlignmentEditor, " + Consts.AssemblySystem_Drawing_Design, typeof (System.Drawing.Design.UITypeEditor))]
  13. public enum ContentAlignment {
  14. TopLeft = 0x001,
  15. TopCenter = 0x002,
  16. TopRight = 0x004,
  17. MiddleLeft = 0x010,
  18. MiddleCenter = 0x020,
  19. MiddleRight = 0x040,
  20. BottomLeft = 0x100,
  21. BottomCenter = 0x200,
  22. BottomRight = 0x400
  23. }
  24. }