Terminal.MessageBox.yml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. ### YamlMime:ManagedReference
  2. items:
  3. - uid: Terminal.MessageBox
  4. id: MessageBox
  5. children:
  6. - Terminal.MessageBox.#ctor
  7. - Terminal.MessageBox.ErrorQuery(System.Int32,System.Int32,System.String,System.String,System.String[])
  8. - Terminal.MessageBox.Query(System.Int32,System.Int32,System.String,System.String,System.String[])
  9. langs:
  10. - csharp
  11. name: MessageBox
  12. nameWithType: MessageBox
  13. fullName: Terminal.MessageBox
  14. type: Class
  15. assemblies:
  16. - Terminal
  17. namespace: Terminal
  18. summary: Message box displays a modal message to the user, with a title, a message and a series of options that the user can choose from.
  19. syntax:
  20. content: public class MessageBox
  21. inheritance:
  22. - System.Object
  23. implements: []
  24. inheritedMembers: []
  25. - uid: Terminal.MessageBox.#ctor
  26. id: '#ctor'
  27. parent: Terminal.MessageBox
  28. langs:
  29. - csharp
  30. name: MessageBox()
  31. nameWithType: MessageBox.MessageBox()
  32. fullName: MessageBox.MessageBox()
  33. type: Constructor
  34. assemblies:
  35. - Terminal
  36. namespace: Terminal
  37. syntax:
  38. content: public MessageBox ();
  39. parameters: []
  40. overload: Terminal.MessageBox.#ctor*
  41. exceptions: []
  42. - uid: Terminal.MessageBox.ErrorQuery(System.Int32,System.Int32,System.String,System.String,System.String[])
  43. id: ErrorQuery(System.Int32,System.Int32,System.String,System.String,System.String[])
  44. parent: Terminal.MessageBox
  45. langs:
  46. - csharp
  47. name: ErrorQuery(Int32, Int32, String, String, String[])
  48. nameWithType: MessageBox.ErrorQuery(Int32, Int32, String, String, String[])
  49. fullName: MessageBox.ErrorQuery(Int32, Int32, String, String, String[])
  50. type: Method
  51. assemblies:
  52. - Terminal
  53. namespace: Terminal
  54. summary: Presents an error message box with the specified title and message and a list of buttons to show to the user.
  55. syntax:
  56. content: public static int ErrorQuery (int width, int height, string title, string message, string[] buttons);
  57. parameters:
  58. - id: width
  59. type: System.Int32
  60. description: Width for the window.
  61. - id: height
  62. type: System.Int32
  63. description: Height for the window.
  64. - id: title
  65. type: System.String
  66. description: Title for the query.
  67. - id: message
  68. type: System.String
  69. description: Message to display, might contain multiple lines..
  70. - id: buttons
  71. type: System.String[]
  72. description: Array of buttons to add.
  73. return:
  74. type: System.Int32
  75. description: The index of the selected button, or -1 if the user pressed ESC to close the dialog.
  76. overload: Terminal.MessageBox.ErrorQuery*
  77. exceptions: []
  78. - uid: Terminal.MessageBox.Query(System.Int32,System.Int32,System.String,System.String,System.String[])
  79. id: Query(System.Int32,System.Int32,System.String,System.String,System.String[])
  80. parent: Terminal.MessageBox
  81. langs:
  82. - csharp
  83. name: Query(Int32, Int32, String, String, String[])
  84. nameWithType: MessageBox.Query(Int32, Int32, String, String, String[])
  85. fullName: MessageBox.Query(Int32, Int32, String, String, String[])
  86. type: Method
  87. assemblies:
  88. - Terminal
  89. namespace: Terminal
  90. summary: Presents a message with the specified title and message and a list of buttons to show to the user.
  91. syntax:
  92. content: public static int Query (int width, int height, string title, string message, string[] buttons);
  93. parameters:
  94. - id: width
  95. type: System.Int32
  96. description: Width for the window.
  97. - id: height
  98. type: System.Int32
  99. description: Height for the window.
  100. - id: title
  101. type: System.String
  102. description: Title for the query.
  103. - id: message
  104. type: System.String
  105. description: Message to display, might contain multiple lines..
  106. - id: buttons
  107. type: System.String[]
  108. description: Array of buttons to add.
  109. return:
  110. type: System.Int32
  111. description: The index of the selected button, or -1 if the user pressed ESC to close the dialog.
  112. overload: Terminal.MessageBox.Query*
  113. exceptions: []
  114. references:
  115. - uid: System.Object
  116. parent: System
  117. isExternal: true
  118. name: Object
  119. nameWithType: Object
  120. fullName: System.Object
  121. - uid: Terminal.MessageBox.#ctor
  122. parent: Terminal.MessageBox
  123. isExternal: false
  124. name: MessageBox()
  125. nameWithType: MessageBox.MessageBox()
  126. fullName: MessageBox.MessageBox()
  127. - uid: Terminal.MessageBox.ErrorQuery(System.Int32,System.Int32,System.String,System.String,System.String[])
  128. parent: Terminal.MessageBox
  129. isExternal: false
  130. name: ErrorQuery(Int32, Int32, String, String, String[])
  131. nameWithType: MessageBox.ErrorQuery(Int32, Int32, String, String, String[])
  132. fullName: MessageBox.ErrorQuery(Int32, Int32, String, String, String[])
  133. - uid: System.Int32
  134. parent: System
  135. isExternal: true
  136. name: Int32
  137. nameWithType: Int32
  138. fullName: System.Int32
  139. - uid: System.String
  140. parent: System
  141. isExternal: true
  142. name: String
  143. nameWithType: String
  144. fullName: System.String
  145. - uid: System.String[]
  146. parent: System
  147. isExternal: true
  148. name: String[]
  149. nameWithType: String[]
  150. fullName: System.String[]
  151. spec.csharp:
  152. - uid: System.String
  153. name: String
  154. nameWithType: String
  155. fullName: System.String
  156. - name: '[]'
  157. nameWithType: '[]'
  158. fullName: '[]'
  159. - uid: Terminal.MessageBox.Query(System.Int32,System.Int32,System.String,System.String,System.String[])
  160. parent: Terminal.MessageBox
  161. isExternal: false
  162. name: Query(Int32, Int32, String, String, String[])
  163. nameWithType: MessageBox.Query(Int32, Int32, String, String, String[])
  164. fullName: MessageBox.Query(Int32, Int32, String, String, String[])
  165. - uid: Terminal.MessageBox.#ctor*
  166. parent: Terminal.MessageBox
  167. isExternal: false
  168. name: MessageBox
  169. nameWithType: MessageBox.MessageBox
  170. fullName: MessageBox.MessageBox
  171. - uid: Terminal.MessageBox.ErrorQuery*
  172. parent: Terminal.MessageBox
  173. isExternal: false
  174. name: ErrorQuery
  175. nameWithType: MessageBox.ErrorQuery
  176. fullName: MessageBox.ErrorQuery
  177. - uid: Terminal.MessageBox.Query*
  178. parent: Terminal.MessageBox
  179. isExternal: false
  180. name: Query
  181. nameWithType: MessageBox.Query
  182. fullName: MessageBox.Query