LeftRightAlignment.cs 316 B

12345678910111213141516171819
  1. //
  2. // System.Windows.Forms.LeftRightAlignment.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. // (C) 2002 Ximian, Inc. http://www.ximian.com
  7. //
  8. using System;
  9. namespace System.Windows.Forms {
  10. /// <summary>
  11. /// </summary>
  12. public enum LeftRightAlignment {
  13. Left = 0,
  14. Right = 1
  15. }
  16. }