AccessibleRole.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. // Permission is hereby granted, free of charge, to any person obtaining
  2. // a copy of this software and associated documentation files (the
  3. // "Software"), to deal in the Software without restriction, including
  4. // without limitation the rights to use, copy, modify, merge, publish,
  5. // distribute, sublicense, and/or sell copies of the Software, and to
  6. // permit persons to whom the Software is furnished to do so, subject to
  7. // the following conditions:
  8. //
  9. // The above copyright notice and this permission notice shall be
  10. // included in all copies or substantial portions of the Software.
  11. //
  12. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  13. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  14. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  15. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  16. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  17. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  18. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  19. //
  20. // Copyright (c) 2004 Novell, Inc.
  21. //
  22. // Authors:
  23. // Peter Bartok [email protected]
  24. //
  25. //
  26. // $Revision: 1.1 $
  27. // $Modtime: $
  28. // $Log: AccessibleRole.cs,v $
  29. // Revision 1.1 2004/07/09 05:21:25 pbartok
  30. // - Initial check-in
  31. //
  32. //
  33. // COMPLETE
  34. namespace System.Windows.Forms {
  35. public enum AccessibleRole {
  36. None = 0,
  37. TitleBar = 1,
  38. MenuBar = 2,
  39. ScrollBar = 3,
  40. Grip = 4,
  41. Sound = 5,
  42. Cursor = 6,
  43. Caret = 7,
  44. Alert = 8,
  45. Window = 9,
  46. Client = 10,
  47. MenuPopup = 11,
  48. MenuItem = 12,
  49. ToolTip = 13,
  50. Application = 14,
  51. Document = 15,
  52. Pane = 16,
  53. Chart = 17,
  54. Dialog = 18,
  55. Border = 19,
  56. Grouping = 20,
  57. Separator = 21,
  58. ToolBar = 22,
  59. StatusBar = 23,
  60. Table = 24,
  61. ColumnHeader = 25,
  62. RowHeader = 26,
  63. Column = 27,
  64. Row = 28,
  65. Cell = 29,
  66. Link = 30,
  67. HelpBalloon = 31,
  68. Character = 32,
  69. List = 33,
  70. ListItem = 34,
  71. Outline = 35,
  72. OutlineItem = 36,
  73. PageTab = 37,
  74. PropertyPage = 38,
  75. Indicator = 39,
  76. Graphic = 40,
  77. StaticText = 41,
  78. Text = 42,
  79. PushButton = 43,
  80. CheckButton = 44,
  81. RadioButton = 45,
  82. ComboBox = 46,
  83. DropList = 47,
  84. ProgressBar = 48,
  85. Dial = 49,
  86. HotkeyField = 50,
  87. Slider = 51,
  88. SpinButton = 52,
  89. Diagram = 53,
  90. Animation = 54,
  91. Equation = 55,
  92. ButtonDropDown = 56,
  93. ButtonMenu = 57,
  94. ButtonDropDownGrid= 58,
  95. WhiteSpace = 59,
  96. PageTabList = 60,
  97. Clock = 61,
  98. Default = -1
  99. }
  100. }