| 1234567891011121314151617181920212223242526272829303132 |
- //
- // System.Windows.Forms.AccessibleNavigation.cs
- //
- // Author:
- // Jaak Simm ([email protected])
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- namespace System.Windows.Forms {
- /// <summary>
- /// Specifies a values for navigating among accessible objects.
- /// </summary>
- //[Serializable]
- public enum AccessibleNavigation {
- //Values were verified with enumcheck.
- Down = 2,
- FirstChild = 7,
- LastChild = 8,
- Left = 3,
- Next = 5,
- Previous = 6,
- Right = 4,
- Up = 1
- }
- }
|