Terminal.Gui.Pos.yml 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581
  1. ### YamlMime:ManagedReference
  2. items:
  3. - uid: Terminal.Gui.Pos
  4. id: Pos
  5. children:
  6. - Terminal.Gui.Pos.#ctor
  7. - Terminal.Gui.Pos.AnchorEnd(System.Int32)
  8. - Terminal.Gui.Pos.At(System.Int32)
  9. - Terminal.Gui.Pos.Bottom(Terminal.Gui.View)
  10. - Terminal.Gui.Pos.Center
  11. - Terminal.Gui.Pos.Left(Terminal.Gui.View)
  12. - Terminal.Gui.Pos.op_Addition(Terminal.Gui.Pos,Terminal.Gui.Pos)
  13. - Terminal.Gui.Pos.op_Implicit(System.Int32 to Terminal.Gui.Pos)
  14. - Terminal.Gui.Pos.op_Subtraction(Terminal.Gui.Pos,Terminal.Gui.Pos)
  15. - Terminal.Gui.Pos.Percent(System.Single)
  16. - Terminal.Gui.Pos.Right(Terminal.Gui.View)
  17. - Terminal.Gui.Pos.Top(Terminal.Gui.View)
  18. - Terminal.Gui.Pos.X(Terminal.Gui.View)
  19. - Terminal.Gui.Pos.Y(Terminal.Gui.View)
  20. langs:
  21. - csharp
  22. name: Pos
  23. nameWithType: Pos
  24. fullName: Terminal.Gui.Pos
  25. type: Class
  26. assemblies:
  27. - Terminal.Gui
  28. namespace: Terminal.Gui
  29. summary: "Describes a position which can be an absolute value, a percentage, centered, or \n relative to the ending dimension. Integer values are implicitly convertible to\n an absolute Pos. These objects are created using the static methods Percent,\n AnchorEnd and Center. The Pos objects can be combined with the addition and \n subtraction operators."
  30. remarks: >-
  31. <p>
  32. Use the Pos objects on the X or Y properties of a view to control the position.
  33. </p>
  34. <p>
  35. These can be used to set the absolute position, when merely assigning an
  36. integer value (via the implicit integer to Pos conversion), and they can be combined
  37. to produce more useful layouts, like: Pos.Center - 3, which would shift the postion
  38. of the view 3 characters to the left after centering for example.
  39. </p>
  40. <p>
  41. It is possible to reference coordinates of another view by using the methods
  42. Left(View), Right(View), Bottom(View), Top(View). The X(View) and Y(View) are
  43. aliases to Left(View) and Top(View) respectively.
  44. </p>
  45. syntax:
  46. content: public class Pos
  47. inheritance:
  48. - System.Object
  49. implements: []
  50. inheritedMembers: []
  51. - uid: Terminal.Gui.Pos.#ctor
  52. id: '#ctor'
  53. parent: Terminal.Gui.Pos
  54. langs:
  55. - csharp
  56. name: Pos()
  57. nameWithType: Pos.Pos()
  58. fullName: Pos.Pos()
  59. type: Constructor
  60. assemblies:
  61. - Terminal.Gui
  62. namespace: Terminal.Gui
  63. syntax:
  64. content: public Pos ();
  65. parameters: []
  66. overload: Terminal.Gui.Pos.#ctor*
  67. exceptions: []
  68. - uid: Terminal.Gui.Pos.AnchorEnd(System.Int32)
  69. id: AnchorEnd(System.Int32)
  70. parent: Terminal.Gui.Pos
  71. langs:
  72. - csharp
  73. name: AnchorEnd(Int32)
  74. nameWithType: Pos.AnchorEnd(Int32)
  75. fullName: Pos.AnchorEnd(Int32)
  76. type: Method
  77. assemblies:
  78. - Terminal.Gui
  79. namespace: Terminal.Gui
  80. summary: "Creates a Pos object that is anchored to the end of the dimension, useful to flush \n the layout from the end."
  81. syntax:
  82. content: public static Terminal.Gui.Pos AnchorEnd (int margin = 0);
  83. parameters:
  84. - id: margin
  85. type: System.Int32
  86. description: Optional margin to set aside.
  87. return:
  88. type: Terminal.Gui.Pos
  89. description: The Pos object anchored to the end (the bottom or the right side).
  90. overload: Terminal.Gui.Pos.AnchorEnd*
  91. exceptions: []
  92. - uid: Terminal.Gui.Pos.At(System.Int32)
  93. id: At(System.Int32)
  94. parent: Terminal.Gui.Pos
  95. langs:
  96. - csharp
  97. name: At(Int32)
  98. nameWithType: Pos.At(Int32)
  99. fullName: Pos.At(Int32)
  100. type: Method
  101. assemblies:
  102. - Terminal.Gui
  103. namespace: Terminal.Gui
  104. summary: Creates an Absolute Pos from the specified integer value.
  105. syntax:
  106. content: public static Terminal.Gui.Pos At (int n);
  107. parameters:
  108. - id: n
  109. type: System.Int32
  110. description: The value to convert to the pos.
  111. return:
  112. type: Terminal.Gui.Pos
  113. description: The Absolute Pos.
  114. overload: Terminal.Gui.Pos.At*
  115. exceptions: []
  116. - uid: Terminal.Gui.Pos.Bottom(Terminal.Gui.View)
  117. id: Bottom(Terminal.Gui.View)
  118. parent: Terminal.Gui.Pos
  119. langs:
  120. - csharp
  121. name: Bottom(View)
  122. nameWithType: Pos.Bottom(View)
  123. fullName: Pos.Bottom(View)
  124. type: Method
  125. assemblies:
  126. - Terminal.Gui
  127. namespace: Terminal.Gui
  128. summary: Returns a Pos object tracks the Bottom (Y+Height) coordinate of the specified view.
  129. syntax:
  130. content: public static Terminal.Gui.Pos Bottom (Terminal.Gui.View view);
  131. parameters:
  132. - id: view
  133. type: Terminal.Gui.View
  134. description: The view that will be tracked.
  135. return:
  136. type: Terminal.Gui.Pos
  137. description: The Position that depends on the other view.
  138. overload: Terminal.Gui.Pos.Bottom*
  139. exceptions: []
  140. - uid: Terminal.Gui.Pos.Center
  141. id: Center
  142. parent: Terminal.Gui.Pos
  143. langs:
  144. - csharp
  145. name: Center()
  146. nameWithType: Pos.Center()
  147. fullName: Pos.Center()
  148. type: Method
  149. assemblies:
  150. - Terminal.Gui
  151. namespace: Terminal.Gui
  152. summary: Returns a Pos object that can be used to center the views.
  153. syntax:
  154. content: public static Terminal.Gui.Pos Center ();
  155. parameters: []
  156. return:
  157. type: Terminal.Gui.Pos
  158. description: The center Pos.
  159. overload: Terminal.Gui.Pos.Center*
  160. exceptions: []
  161. - uid: Terminal.Gui.Pos.Left(Terminal.Gui.View)
  162. id: Left(Terminal.Gui.View)
  163. parent: Terminal.Gui.Pos
  164. langs:
  165. - csharp
  166. name: Left(View)
  167. nameWithType: Pos.Left(View)
  168. fullName: Pos.Left(View)
  169. type: Method
  170. assemblies:
  171. - Terminal.Gui
  172. namespace: Terminal.Gui
  173. summary: Returns a Pos object tracks the Left (X) position of the specified view.
  174. syntax:
  175. content: public static Terminal.Gui.Pos Left (Terminal.Gui.View view);
  176. parameters:
  177. - id: view
  178. type: Terminal.Gui.View
  179. description: The view that will be tracked.
  180. return:
  181. type: Terminal.Gui.Pos
  182. description: The Position that depends on the other view.
  183. overload: Terminal.Gui.Pos.Left*
  184. exceptions: []
  185. - uid: Terminal.Gui.Pos.op_Addition(Terminal.Gui.Pos,Terminal.Gui.Pos)
  186. id: op_Addition(Terminal.Gui.Pos,Terminal.Gui.Pos)
  187. parent: Terminal.Gui.Pos
  188. langs:
  189. - csharp
  190. name: op_Addition(Pos, Pos)
  191. nameWithType: Pos.op_Addition(Pos, Pos)
  192. fullName: Pos.op_Addition(Pos, Pos)
  193. type: Operator
  194. assemblies:
  195. - Terminal.Gui
  196. namespace: Terminal.Gui
  197. summary: Adds a <xref href="Terminal.Gui.Pos"></xref> to a <xref href="Terminal.Gui.Pos"></xref>, yielding a new <xref href="Terminal.Gui.Pos"></xref>.
  198. syntax:
  199. content: public static Terminal.Gui.Pos op_Addition (Terminal.Gui.Pos left, Terminal.Gui.Pos right);
  200. parameters:
  201. - id: left
  202. type: Terminal.Gui.Pos
  203. description: The first <xref href="Terminal.Gui.Pos"></xref> to add.
  204. - id: right
  205. type: Terminal.Gui.Pos
  206. description: The second <xref href="Terminal.Gui.Pos"></xref> to add.
  207. return:
  208. type: Terminal.Gui.Pos
  209. description: The <xref href="Terminal.Gui.Pos"></xref> that is the sum of the values of <code>left</code> and <code>right</code>.
  210. overload: Terminal.Gui.Pos.op_Addition*
  211. exceptions: []
  212. - uid: Terminal.Gui.Pos.op_Implicit(System.Int32 to Terminal.Gui.Pos)
  213. id: op_Implicit(System.Int32 to Terminal.Gui.Pos)
  214. parent: Terminal.Gui.Pos
  215. langs:
  216. - csharp
  217. name: op_Implicit(Int32 to Pos)
  218. nameWithType: Pos.op_Implicit(Int32 to Pos)
  219. fullName: Pos.op_Implicit(Int32 to Pos)
  220. type: Operator
  221. assemblies:
  222. - Terminal.Gui
  223. namespace: Terminal.Gui
  224. summary: Creates an Absolute Pos from the specified integer value.
  225. syntax:
  226. content: public static Terminal.Gui.Pos op_Implicit (int n);
  227. parameters:
  228. - id: n
  229. type: System.Int32
  230. description: The value to convert to the pos.
  231. return:
  232. type: Terminal.Gui.Pos
  233. description: The Absolute Pos.
  234. overload: Terminal.Gui.Pos.op_Implicit*
  235. exceptions: []
  236. - uid: Terminal.Gui.Pos.op_Subtraction(Terminal.Gui.Pos,Terminal.Gui.Pos)
  237. id: op_Subtraction(Terminal.Gui.Pos,Terminal.Gui.Pos)
  238. parent: Terminal.Gui.Pos
  239. langs:
  240. - csharp
  241. name: op_Subtraction(Pos, Pos)
  242. nameWithType: Pos.op_Subtraction(Pos, Pos)
  243. fullName: Pos.op_Subtraction(Pos, Pos)
  244. type: Operator
  245. assemblies:
  246. - Terminal.Gui
  247. namespace: Terminal.Gui
  248. summary: Subtracts a <xref href="Terminal.Gui.Pos"></xref> from a <xref href="Terminal.Gui.Pos"></xref>, yielding a new <xref href="Terminal.Gui.Pos"></xref>.
  249. syntax:
  250. content: public static Terminal.Gui.Pos op_Subtraction (Terminal.Gui.Pos left, Terminal.Gui.Pos right);
  251. parameters:
  252. - id: left
  253. type: Terminal.Gui.Pos
  254. description: The <xref href="Terminal.Gui.Pos"></xref> to subtract from (the minuend).
  255. - id: right
  256. type: Terminal.Gui.Pos
  257. description: The <xref href="Terminal.Gui.Pos"></xref> to subtract (the subtrahend).
  258. return:
  259. type: Terminal.Gui.Pos
  260. description: The <xref href="Terminal.Gui.Pos"></xref> that is the <code>left</code> minus <code>right</code>.
  261. overload: Terminal.Gui.Pos.op_Subtraction*
  262. exceptions: []
  263. - uid: Terminal.Gui.Pos.Percent(System.Single)
  264. id: Percent(System.Single)
  265. parent: Terminal.Gui.Pos
  266. langs:
  267. - csharp
  268. name: Percent(Single)
  269. nameWithType: Pos.Percent(Single)
  270. fullName: Pos.Percent(Single)
  271. type: Method
  272. assemblies:
  273. - Terminal.Gui
  274. namespace: Terminal.Gui
  275. summary: Creates a percentage Pos object
  276. syntax:
  277. content: public static Terminal.Gui.Pos Percent (float n);
  278. parameters:
  279. - id: n
  280. type: System.Single
  281. description: A value between 0 and 100 representing the percentage.
  282. return:
  283. type: Terminal.Gui.Pos
  284. description: The percent Pos object.
  285. overload: Terminal.Gui.Pos.Percent*
  286. exceptions: []
  287. - uid: Terminal.Gui.Pos.Right(Terminal.Gui.View)
  288. id: Right(Terminal.Gui.View)
  289. parent: Terminal.Gui.Pos
  290. langs:
  291. - csharp
  292. name: Right(View)
  293. nameWithType: Pos.Right(View)
  294. fullName: Pos.Right(View)
  295. type: Method
  296. assemblies:
  297. - Terminal.Gui
  298. namespace: Terminal.Gui
  299. summary: Returns a Pos object tracks the Right (X+Width) coordinate of the specified view.
  300. syntax:
  301. content: public static Terminal.Gui.Pos Right (Terminal.Gui.View view);
  302. parameters:
  303. - id: view
  304. type: Terminal.Gui.View
  305. description: The view that will be tracked.
  306. return:
  307. type: Terminal.Gui.Pos
  308. description: The Position that depends on the other view.
  309. overload: Terminal.Gui.Pos.Right*
  310. exceptions: []
  311. - uid: Terminal.Gui.Pos.Top(Terminal.Gui.View)
  312. id: Top(Terminal.Gui.View)
  313. parent: Terminal.Gui.Pos
  314. langs:
  315. - csharp
  316. name: Top(View)
  317. nameWithType: Pos.Top(View)
  318. fullName: Pos.Top(View)
  319. type: Method
  320. assemblies:
  321. - Terminal.Gui
  322. namespace: Terminal.Gui
  323. summary: Returns a Pos object tracks the Top (Y) position of the specified view.
  324. syntax:
  325. content: public static Terminal.Gui.Pos Top (Terminal.Gui.View view);
  326. parameters:
  327. - id: view
  328. type: Terminal.Gui.View
  329. description: The view that will be tracked.
  330. return:
  331. type: Terminal.Gui.Pos
  332. description: The Position that depends on the other view.
  333. overload: Terminal.Gui.Pos.Top*
  334. exceptions: []
  335. - uid: Terminal.Gui.Pos.X(Terminal.Gui.View)
  336. id: X(Terminal.Gui.View)
  337. parent: Terminal.Gui.Pos
  338. langs:
  339. - csharp
  340. name: X(View)
  341. nameWithType: Pos.X(View)
  342. fullName: Pos.X(View)
  343. type: Method
  344. assemblies:
  345. - Terminal.Gui
  346. namespace: Terminal.Gui
  347. summary: Returns a Pos object tracks the Left (X) position of the specified view.
  348. syntax:
  349. content: public static Terminal.Gui.Pos X (Terminal.Gui.View view);
  350. parameters:
  351. - id: view
  352. type: Terminal.Gui.View
  353. description: The view that will be tracked.
  354. return:
  355. type: Terminal.Gui.Pos
  356. description: The Position that depends on the other view.
  357. overload: Terminal.Gui.Pos.X*
  358. exceptions: []
  359. - uid: Terminal.Gui.Pos.Y(Terminal.Gui.View)
  360. id: Y(Terminal.Gui.View)
  361. parent: Terminal.Gui.Pos
  362. langs:
  363. - csharp
  364. name: Y(View)
  365. nameWithType: Pos.Y(View)
  366. fullName: Pos.Y(View)
  367. type: Method
  368. assemblies:
  369. - Terminal.Gui
  370. namespace: Terminal.Gui
  371. summary: Returns a Pos object tracks the Top (Y) position of the specified view.
  372. syntax:
  373. content: public static Terminal.Gui.Pos Y (Terminal.Gui.View view);
  374. parameters:
  375. - id: view
  376. type: Terminal.Gui.View
  377. description: The view that will be tracked.
  378. return:
  379. type: Terminal.Gui.Pos
  380. description: The Position that depends on the other view.
  381. overload: Terminal.Gui.Pos.Y*
  382. exceptions: []
  383. references:
  384. - uid: System.Object
  385. parent: System
  386. isExternal: true
  387. name: Object
  388. nameWithType: Object
  389. fullName: System.Object
  390. - uid: Terminal.Gui.Pos.#ctor
  391. parent: Terminal.Gui.Pos
  392. isExternal: false
  393. name: Pos()
  394. nameWithType: Pos.Pos()
  395. fullName: Pos.Pos()
  396. - uid: Terminal.Gui.Pos.AnchorEnd(System.Int32)
  397. parent: Terminal.Gui.Pos
  398. isExternal: false
  399. name: AnchorEnd(Int32)
  400. nameWithType: Pos.AnchorEnd(Int32)
  401. fullName: Pos.AnchorEnd(Int32)
  402. - uid: Terminal.Gui.Pos
  403. parent: Terminal.Gui
  404. isExternal: false
  405. name: Pos
  406. nameWithType: Pos
  407. fullName: Terminal.Gui.Pos
  408. - uid: System.Int32
  409. parent: System
  410. isExternal: true
  411. name: Int32
  412. nameWithType: Int32
  413. fullName: System.Int32
  414. - uid: Terminal.Gui.Pos.At(System.Int32)
  415. parent: Terminal.Gui.Pos
  416. isExternal: false
  417. name: At(Int32)
  418. nameWithType: Pos.At(Int32)
  419. fullName: Pos.At(Int32)
  420. - uid: Terminal.Gui.Pos.Bottom(Terminal.Gui.View)
  421. parent: Terminal.Gui.Pos
  422. isExternal: false
  423. name: Bottom(View)
  424. nameWithType: Pos.Bottom(View)
  425. fullName: Pos.Bottom(View)
  426. - uid: Terminal.Gui.View
  427. parent: Terminal.Gui
  428. isExternal: false
  429. name: View
  430. nameWithType: View
  431. fullName: Terminal.Gui.View
  432. - uid: Terminal.Gui.Pos.Center
  433. parent: Terminal.Gui.Pos
  434. isExternal: false
  435. name: Center()
  436. nameWithType: Pos.Center()
  437. fullName: Pos.Center()
  438. - uid: Terminal.Gui.Pos.Left(Terminal.Gui.View)
  439. parent: Terminal.Gui.Pos
  440. isExternal: false
  441. name: Left(View)
  442. nameWithType: Pos.Left(View)
  443. fullName: Pos.Left(View)
  444. - uid: Terminal.Gui.Pos.op_Addition(Terminal.Gui.Pos,Terminal.Gui.Pos)
  445. parent: Terminal.Gui.Pos
  446. isExternal: false
  447. name: op_Addition(Pos, Pos)
  448. nameWithType: Pos.op_Addition(Pos, Pos)
  449. fullName: Pos.op_Addition(Pos, Pos)
  450. - uid: Terminal.Gui.Pos.op_Implicit(System.Int32 to Terminal.Gui.Pos)
  451. parent: Terminal.Gui.Pos
  452. isExternal: false
  453. name: op_Implicit(Int32 to Pos)
  454. nameWithType: Pos.op_Implicit(Int32 to Pos)
  455. fullName: Pos.op_Implicit(Int32 to Pos)
  456. - uid: Terminal.Gui.Pos.op_Subtraction(Terminal.Gui.Pos,Terminal.Gui.Pos)
  457. parent: Terminal.Gui.Pos
  458. isExternal: false
  459. name: op_Subtraction(Pos, Pos)
  460. nameWithType: Pos.op_Subtraction(Pos, Pos)
  461. fullName: Pos.op_Subtraction(Pos, Pos)
  462. - uid: Terminal.Gui.Pos.Percent(System.Single)
  463. parent: Terminal.Gui.Pos
  464. isExternal: false
  465. name: Percent(Single)
  466. nameWithType: Pos.Percent(Single)
  467. fullName: Pos.Percent(Single)
  468. - uid: System.Single
  469. parent: System
  470. isExternal: true
  471. name: Single
  472. nameWithType: Single
  473. fullName: System.Single
  474. - uid: Terminal.Gui.Pos.Right(Terminal.Gui.View)
  475. parent: Terminal.Gui.Pos
  476. isExternal: false
  477. name: Right(View)
  478. nameWithType: Pos.Right(View)
  479. fullName: Pos.Right(View)
  480. - uid: Terminal.Gui.Pos.Top(Terminal.Gui.View)
  481. parent: Terminal.Gui.Pos
  482. isExternal: false
  483. name: Top(View)
  484. nameWithType: Pos.Top(View)
  485. fullName: Pos.Top(View)
  486. - uid: Terminal.Gui.Pos.X(Terminal.Gui.View)
  487. parent: Terminal.Gui.Pos
  488. isExternal: false
  489. name: X(View)
  490. nameWithType: Pos.X(View)
  491. fullName: Pos.X(View)
  492. - uid: Terminal.Gui.Pos.Y(Terminal.Gui.View)
  493. parent: Terminal.Gui.Pos
  494. isExternal: false
  495. name: Y(View)
  496. nameWithType: Pos.Y(View)
  497. fullName: Pos.Y(View)
  498. - uid: Terminal.Gui.Pos.#ctor*
  499. parent: Terminal.Gui.Pos
  500. isExternal: false
  501. name: Pos
  502. nameWithType: Pos.Pos
  503. fullName: Pos.Pos
  504. - uid: Terminal.Gui.Pos.AnchorEnd*
  505. parent: Terminal.Gui.Pos
  506. isExternal: false
  507. name: AnchorEnd
  508. nameWithType: Pos.AnchorEnd
  509. fullName: Pos.AnchorEnd
  510. - uid: Terminal.Gui.Pos.At*
  511. parent: Terminal.Gui.Pos
  512. isExternal: false
  513. name: At
  514. nameWithType: Pos.At
  515. fullName: Pos.At
  516. - uid: Terminal.Gui.Pos.Bottom*
  517. parent: Terminal.Gui.Pos
  518. isExternal: false
  519. name: Bottom
  520. nameWithType: Pos.Bottom
  521. fullName: Pos.Bottom
  522. - uid: Terminal.Gui.Pos.Center*
  523. parent: Terminal.Gui.Pos
  524. isExternal: false
  525. name: Center
  526. nameWithType: Pos.Center
  527. fullName: Pos.Center
  528. - uid: Terminal.Gui.Pos.Left*
  529. parent: Terminal.Gui.Pos
  530. isExternal: false
  531. name: Left
  532. nameWithType: Pos.Left
  533. fullName: Pos.Left
  534. - uid: Terminal.Gui.Pos.op_Addition*
  535. parent: Terminal.Gui.Pos
  536. isExternal: false
  537. name: op_Addition
  538. nameWithType: Pos.op_Addition
  539. fullName: Pos.op_Addition
  540. - uid: Terminal.Gui.Pos.op_Implicit*
  541. parent: Terminal.Gui.Pos
  542. isExternal: false
  543. name: op_Implicit
  544. nameWithType: Pos.op_Implicit
  545. fullName: Pos.op_Implicit
  546. - uid: Terminal.Gui.Pos.op_Subtraction*
  547. parent: Terminal.Gui.Pos
  548. isExternal: false
  549. name: op_Subtraction
  550. nameWithType: Pos.op_Subtraction
  551. fullName: Pos.op_Subtraction
  552. - uid: Terminal.Gui.Pos.Percent*
  553. parent: Terminal.Gui.Pos
  554. isExternal: false
  555. name: Percent
  556. nameWithType: Pos.Percent
  557. fullName: Pos.Percent
  558. - uid: Terminal.Gui.Pos.Right*
  559. parent: Terminal.Gui.Pos
  560. isExternal: false
  561. name: Right
  562. nameWithType: Pos.Right
  563. fullName: Pos.Right
  564. - uid: Terminal.Gui.Pos.Top*
  565. parent: Terminal.Gui.Pos
  566. isExternal: false
  567. name: Top
  568. nameWithType: Pos.Top
  569. fullName: Pos.Top
  570. - uid: Terminal.Gui.Pos.X*
  571. parent: Terminal.Gui.Pos
  572. isExternal: false
  573. name: X
  574. nameWithType: Pos.X
  575. fullName: Pos.X
  576. - uid: Terminal.Gui.Pos.Y*
  577. parent: Terminal.Gui.Pos
  578. isExternal: false
  579. name: Y
  580. nameWithType: Pos.Y
  581. fullName: Pos.Y