| 12345678910111213141516171819 |
- //
- // System.Windows.Forms.LeftRightAlignment.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- namespace System.Windows.Forms {
- /// <summary>
- /// </summary>
- public enum LeftRightAlignment {
- Left = 0,
- Right = 1
- }
- }
|