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

AccessibleRole.cs « System.Windows.Forms « Managed.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e512e29f7e1ed12283d6e4aba6e5303d9dad079 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
// 
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
// Copyright (c) 2004 Novell, Inc.
//
// Authors:
//	Peter Bartok	pbartok@novell.com
//


// COMPLETE

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