| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- //
- // System.Windows.Forms.AccessibleRole.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- // (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
- }
- }
|