Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AccessibleNavigation.cs « WINELib « System.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c7d017728cf056cdf1f4af27d47eef17c3da825b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
// System.Windows.Forms.AccessibleNavigation.cs
//
// Author:
//   Jaak Simm (jaaksimm@firm.ee)
//   Dennis Hayes (dennish@raytek.com)
// (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
	}
}