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