| 12345678910111213141516171819202122232425 |
- //
- // System.Windows.Forms.BoundsSpecified.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- namespace System.Windows.Forms {
- /// <summary>
- /// </summary>
- public enum BoundsSpecified {
- All = 15,
- Height = 8,
- Location = 3,
- None = 0,
- Size = 12,
- Width = 4,
- X = 1,
- Y = 2
- }
- }
|