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

AccessibleRole.cs « System.Windows.Forms « System.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8a21d96e95ce189005ce6b337aa5831498d5efde (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//
// System.Windows.Forms.AccessibleRole.cs
//
// Author:
//   Dennis Hayes (dennish@raytek.com)
// (C) 2002 Ximian, Inc.  http://www.ximian.com
//

using System;

namespace System.Windows.Forms {

	/// <summary>
	/// </summary>
	public enum AccessibleRole{
		Alert = 8,
		Animation = 54,
		Application = 14,
		Border = 19,
		ButtonDropDownGrid = 58,
		ButtonMenu = 57,
		Caret = 7,
		Cell = 29,
		Character = 32,
		Chart = 17,
		CheckButton = 44,
		Client = 10,
		Clock = 61,
		Column = 27,
		ColumnHeader = 25,
		ComboBox = 46,
		Cursor = 6,
		Default = -1,
		Diagram = 53,
		Dial = 49,
		Dialog = 18,
		Document = 15,
		DropList = 47,
		Equation = 55,
		Graphic = 40,
		Grip = 4,
		Grouping = 20,
		HelpBalloon = 31,
		HotkeyField = 50,
		Indicator = 39,
		Link = 30,
		List = 33,
		ListItem = 34,
		MenuBar = 2,
		MenuItem = 12,
		MenuPopup = 11,
		None = 0,
		Outline = 35,
		OutlineItem = 36,
		PageTab = 37,
		PageTabList = 60,
		Pane = 16,
		ProgressBar = 48,
		PropertyPage = 38,
		PushButton = 43,
		RadioButton = 45,
		Row = 28,
		RowHeader = 26,
		ScrollBar = 3,
		Separator = 21,
		Slider = 51,
		Sound = 5,
		SpinButton = 52,
		StaticText = 41,
		StatusBar = 23,
		Table = 24,
		Text = 42,
		TitleBar = 1,
		ToolBar = 22,
		ToolTip = 13,
		WhiteSpace = 59,
		Window = 9
	}

}