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