Terminal.Gui.Point.yml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701
  1. ### YamlMime:ManagedReference
  2. items:
  3. - uid: Terminal.Gui.Point
  4. id: Point
  5. children:
  6. - Terminal.Gui.Point.#ctor(Terminal.Gui.Size)
  7. - Terminal.Gui.Point.#ctor(System.Int32,System.Int32)
  8. - Terminal.Gui.Point.Add(Terminal.Gui.Point,Terminal.Gui.Size)
  9. - Terminal.Gui.Point.Empty
  10. - Terminal.Gui.Point.Equals(System.Object)
  11. - Terminal.Gui.Point.GetHashCode
  12. - Terminal.Gui.Point.IsEmpty
  13. - Terminal.Gui.Point.Offset(System.Int32,System.Int32)
  14. - Terminal.Gui.Point.Offset(Terminal.Gui.Point)
  15. - Terminal.Gui.Point.op_Addition(Terminal.Gui.Point,Terminal.Gui.Size)
  16. - Terminal.Gui.Point.op_Equality(Terminal.Gui.Point,Terminal.Gui.Point)
  17. - Terminal.Gui.Point.op_Explicit(Terminal.Gui.Point to Terminal.Gui.Size)
  18. - Terminal.Gui.Point.op_Inequality(Terminal.Gui.Point,Terminal.Gui.Point)
  19. - Terminal.Gui.Point.op_Subtraction(Terminal.Gui.Point,Terminal.Gui.Size)
  20. - Terminal.Gui.Point.Subtract(Terminal.Gui.Point,Terminal.Gui.Size)
  21. - Terminal.Gui.Point.ToString
  22. - Terminal.Gui.Point.X
  23. - Terminal.Gui.Point.Y
  24. langs:
  25. - csharp
  26. name: Point
  27. nameWithType: Point
  28. fullName: Terminal.Gui.Point
  29. type: Struct
  30. assemblies:
  31. - Terminal.Gui
  32. namespace: Terminal.Gui
  33. summary: Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional plane.
  34. syntax:
  35. content: public struct Point
  36. inheritance:
  37. - System.ValueType
  38. implements: []
  39. - uid: Terminal.Gui.Point.#ctor(Terminal.Gui.Size)
  40. id: '#ctor(Terminal.Gui.Size)'
  41. parent: Terminal.Gui.Point
  42. langs:
  43. - csharp
  44. name: Point(Size)
  45. nameWithType: Point.Point(Size)
  46. fullName: Point.Point(Size)
  47. type: Constructor
  48. assemblies:
  49. - Terminal.Gui
  50. namespace: Terminal.Gui
  51. summary: Point Constructor
  52. remarks: Creates a Point from a Size value.
  53. syntax:
  54. content: public Point (Terminal.Gui.Size sz);
  55. parameters:
  56. - id: sz
  57. type: Terminal.Gui.Size
  58. description: To be added.
  59. overload: Terminal.Gui.Point.#ctor*
  60. exceptions: []
  61. - uid: Terminal.Gui.Point.#ctor(System.Int32,System.Int32)
  62. id: '#ctor(System.Int32,System.Int32)'
  63. parent: Terminal.Gui.Point
  64. langs:
  65. - csharp
  66. name: Point(Int32, Int32)
  67. nameWithType: Point.Point(Int32, Int32)
  68. fullName: Point.Point(Int32, Int32)
  69. type: Constructor
  70. assemblies:
  71. - Terminal.Gui
  72. namespace: Terminal.Gui
  73. summary: Point Constructor
  74. remarks: Creates a Point from a specified x,y coordinate pair.
  75. syntax:
  76. content: public Point (int x, int y);
  77. parameters:
  78. - id: x
  79. type: System.Int32
  80. description: To be added.
  81. - id: y
  82. type: System.Int32
  83. description: To be added.
  84. overload: Terminal.Gui.Point.#ctor*
  85. exceptions: []
  86. - uid: Terminal.Gui.Point.Add(Terminal.Gui.Point,Terminal.Gui.Size)
  87. id: Add(Terminal.Gui.Point,Terminal.Gui.Size)
  88. parent: Terminal.Gui.Point
  89. langs:
  90. - csharp
  91. name: Add(Point, Size)
  92. nameWithType: Point.Add(Point, Size)
  93. fullName: Point.Add(Point, Size)
  94. type: Method
  95. assemblies:
  96. - Terminal.Gui
  97. namespace: Terminal.Gui
  98. summary: Adds the specified Size to the specified Point.
  99. syntax:
  100. content: public static Terminal.Gui.Point Add (Terminal.Gui.Point pt, Terminal.Gui.Size sz);
  101. parameters:
  102. - id: pt
  103. type: Terminal.Gui.Point
  104. description: The Point to add.
  105. - id: sz
  106. type: Terminal.Gui.Size
  107. description: The Size to add.
  108. return:
  109. type: Terminal.Gui.Point
  110. description: The Point that is the result of the addition operation.
  111. overload: Terminal.Gui.Point.Add*
  112. exceptions: []
  113. - uid: Terminal.Gui.Point.Empty
  114. id: Empty
  115. parent: Terminal.Gui.Point
  116. langs:
  117. - csharp
  118. name: Empty
  119. nameWithType: Point.Empty
  120. fullName: Point.Empty
  121. type: Field
  122. assemblies:
  123. - Terminal.Gui
  124. namespace: Terminal.Gui
  125. summary: Empty Shared Field
  126. remarks: An uninitialized Point Structure.
  127. syntax:
  128. content: public static readonly Terminal.Gui.Point Empty;
  129. return:
  130. type: Terminal.Gui.Point
  131. description: To be added.
  132. exceptions: []
  133. - uid: Terminal.Gui.Point.Equals(System.Object)
  134. id: Equals(System.Object)
  135. parent: Terminal.Gui.Point
  136. langs:
  137. - csharp
  138. name: Equals(Object)
  139. nameWithType: Point.Equals(Object)
  140. fullName: Point.Equals(Object)
  141. type: Method
  142. assemblies:
  143. - Terminal.Gui
  144. namespace: Terminal.Gui
  145. summary: Equals Method
  146. remarks: Checks equivalence of this Point and another object.
  147. syntax:
  148. content: public override bool Equals (object obj);
  149. parameters:
  150. - id: obj
  151. type: System.Object
  152. description: To be added.
  153. return:
  154. type: System.Boolean
  155. description: To be added.
  156. overload: Terminal.Gui.Point.Equals*
  157. exceptions: []
  158. - uid: Terminal.Gui.Point.GetHashCode
  159. id: GetHashCode
  160. parent: Terminal.Gui.Point
  161. langs:
  162. - csharp
  163. name: GetHashCode()
  164. nameWithType: Point.GetHashCode()
  165. fullName: Point.GetHashCode()
  166. type: Method
  167. assemblies:
  168. - Terminal.Gui
  169. namespace: Terminal.Gui
  170. summary: GetHashCode Method
  171. remarks: Calculates a hashing value.
  172. syntax:
  173. content: public override int GetHashCode ();
  174. parameters: []
  175. return:
  176. type: System.Int32
  177. description: To be added.
  178. overload: Terminal.Gui.Point.GetHashCode*
  179. exceptions: []
  180. - uid: Terminal.Gui.Point.IsEmpty
  181. id: IsEmpty
  182. parent: Terminal.Gui.Point
  183. langs:
  184. - csharp
  185. name: IsEmpty
  186. nameWithType: Point.IsEmpty
  187. fullName: Point.IsEmpty
  188. type: Property
  189. assemblies:
  190. - Terminal.Gui
  191. namespace: Terminal.Gui
  192. summary: IsEmpty Property
  193. remarks: Indicates if both X and Y are zero.
  194. syntax:
  195. content: public bool IsEmpty { get; }
  196. return:
  197. type: System.Boolean
  198. description: To be added.
  199. overload: Terminal.Gui.Point.IsEmpty*
  200. exceptions: []
  201. - uid: Terminal.Gui.Point.Offset(System.Int32,System.Int32)
  202. id: Offset(System.Int32,System.Int32)
  203. parent: Terminal.Gui.Point
  204. langs:
  205. - csharp
  206. name: Offset(Int32, Int32)
  207. nameWithType: Point.Offset(Int32, Int32)
  208. fullName: Point.Offset(Int32, Int32)
  209. type: Method
  210. assemblies:
  211. - Terminal.Gui
  212. namespace: Terminal.Gui
  213. summary: Offset Method
  214. remarks: Moves the Point a specified distance.
  215. syntax:
  216. content: public void Offset (int dx, int dy);
  217. parameters:
  218. - id: dx
  219. type: System.Int32
  220. description: To be added.
  221. - id: dy
  222. type: System.Int32
  223. description: To be added.
  224. overload: Terminal.Gui.Point.Offset*
  225. exceptions: []
  226. - uid: Terminal.Gui.Point.Offset(Terminal.Gui.Point)
  227. id: Offset(Terminal.Gui.Point)
  228. parent: Terminal.Gui.Point
  229. langs:
  230. - csharp
  231. name: Offset(Point)
  232. nameWithType: Point.Offset(Point)
  233. fullName: Point.Offset(Point)
  234. type: Method
  235. assemblies:
  236. - Terminal.Gui
  237. namespace: Terminal.Gui
  238. summary: Translates this Point by the specified Point.
  239. syntax:
  240. content: public void Offset (Terminal.Gui.Point p);
  241. parameters:
  242. - id: p
  243. type: Terminal.Gui.Point
  244. description: The Point used offset this Point.
  245. overload: Terminal.Gui.Point.Offset*
  246. exceptions: []
  247. - uid: Terminal.Gui.Point.op_Addition(Terminal.Gui.Point,Terminal.Gui.Size)
  248. id: op_Addition(Terminal.Gui.Point,Terminal.Gui.Size)
  249. parent: Terminal.Gui.Point
  250. langs:
  251. - csharp
  252. name: op_Addition(Point, Size)
  253. nameWithType: Point.op_Addition(Point, Size)
  254. fullName: Point.op_Addition(Point, Size)
  255. type: Operator
  256. assemblies:
  257. - Terminal.Gui
  258. namespace: Terminal.Gui
  259. summary: Addition Operator
  260. remarks: >-
  261. Translates a Point using the Width and Height
  262. properties of the given <typeref>Size</typeref>.
  263. syntax:
  264. content: public static Terminal.Gui.Point op_Addition (Terminal.Gui.Point pt, Terminal.Gui.Size sz);
  265. parameters:
  266. - id: pt
  267. type: Terminal.Gui.Point
  268. description: To be added.
  269. - id: sz
  270. type: Terminal.Gui.Size
  271. description: To be added.
  272. return:
  273. type: Terminal.Gui.Point
  274. description: To be added.
  275. overload: Terminal.Gui.Point.op_Addition*
  276. exceptions: []
  277. - uid: Terminal.Gui.Point.op_Equality(Terminal.Gui.Point,Terminal.Gui.Point)
  278. id: op_Equality(Terminal.Gui.Point,Terminal.Gui.Point)
  279. parent: Terminal.Gui.Point
  280. langs:
  281. - csharp
  282. name: op_Equality(Point, Point)
  283. nameWithType: Point.op_Equality(Point, Point)
  284. fullName: Point.op_Equality(Point, Point)
  285. type: Operator
  286. assemblies:
  287. - Terminal.Gui
  288. namespace: Terminal.Gui
  289. summary: Equality Operator
  290. remarks: "Compares two Point objects. The return value is\n based on the equivalence of the X and Y properties \n of the two points."
  291. syntax:
  292. content: public static bool op_Equality (Terminal.Gui.Point left, Terminal.Gui.Point right);
  293. parameters:
  294. - id: left
  295. type: Terminal.Gui.Point
  296. description: To be added.
  297. - id: right
  298. type: Terminal.Gui.Point
  299. description: To be added.
  300. return:
  301. type: System.Boolean
  302. description: To be added.
  303. overload: Terminal.Gui.Point.op_Equality*
  304. exceptions: []
  305. - uid: Terminal.Gui.Point.op_Explicit(Terminal.Gui.Point to Terminal.Gui.Size)
  306. id: op_Explicit(Terminal.Gui.Point to Terminal.Gui.Size)
  307. parent: Terminal.Gui.Point
  308. langs:
  309. - csharp
  310. name: op_Explicit(Point to Size)
  311. nameWithType: Point.op_Explicit(Point to Size)
  312. fullName: Point.op_Explicit(Point to Size)
  313. type: Operator
  314. assemblies:
  315. - Terminal.Gui
  316. namespace: Terminal.Gui
  317. summary: Point to Size Conversion
  318. remarks: "Returns a Size based on the Coordinates of a given \n Point. Requires explicit cast."
  319. syntax:
  320. content: public static Terminal.Gui.Size op_Explicit (Terminal.Gui.Point p);
  321. parameters:
  322. - id: p
  323. type: Terminal.Gui.Point
  324. description: To be added.
  325. return:
  326. type: Terminal.Gui.Size
  327. description: To be added.
  328. overload: Terminal.Gui.Point.op_Explicit*
  329. exceptions: []
  330. - uid: Terminal.Gui.Point.op_Inequality(Terminal.Gui.Point,Terminal.Gui.Point)
  331. id: op_Inequality(Terminal.Gui.Point,Terminal.Gui.Point)
  332. parent: Terminal.Gui.Point
  333. langs:
  334. - csharp
  335. name: op_Inequality(Point, Point)
  336. nameWithType: Point.op_Inequality(Point, Point)
  337. fullName: Point.op_Inequality(Point, Point)
  338. type: Operator
  339. assemblies:
  340. - Terminal.Gui
  341. namespace: Terminal.Gui
  342. summary: Inequality Operator
  343. remarks: "Compares two Point objects. The return value is\n based on the equivalence of the X and Y properties \n of the two points."
  344. syntax:
  345. content: public static bool op_Inequality (Terminal.Gui.Point left, Terminal.Gui.Point right);
  346. parameters:
  347. - id: left
  348. type: Terminal.Gui.Point
  349. description: To be added.
  350. - id: right
  351. type: Terminal.Gui.Point
  352. description: To be added.
  353. return:
  354. type: System.Boolean
  355. description: To be added.
  356. overload: Terminal.Gui.Point.op_Inequality*
  357. exceptions: []
  358. - uid: Terminal.Gui.Point.op_Subtraction(Terminal.Gui.Point,Terminal.Gui.Size)
  359. id: op_Subtraction(Terminal.Gui.Point,Terminal.Gui.Size)
  360. parent: Terminal.Gui.Point
  361. langs:
  362. - csharp
  363. name: op_Subtraction(Point, Size)
  364. nameWithType: Point.op_Subtraction(Point, Size)
  365. fullName: Point.op_Subtraction(Point, Size)
  366. type: Operator
  367. assemblies:
  368. - Terminal.Gui
  369. namespace: Terminal.Gui
  370. summary: Subtraction Operator
  371. remarks: "Translates a Point using the negation of the Width \n and Height properties of the given Size."
  372. syntax:
  373. content: public static Terminal.Gui.Point op_Subtraction (Terminal.Gui.Point pt, Terminal.Gui.Size sz);
  374. parameters:
  375. - id: pt
  376. type: Terminal.Gui.Point
  377. description: To be added.
  378. - id: sz
  379. type: Terminal.Gui.Size
  380. description: To be added.
  381. return:
  382. type: Terminal.Gui.Point
  383. description: To be added.
  384. overload: Terminal.Gui.Point.op_Subtraction*
  385. exceptions: []
  386. - uid: Terminal.Gui.Point.Subtract(Terminal.Gui.Point,Terminal.Gui.Size)
  387. id: Subtract(Terminal.Gui.Point,Terminal.Gui.Size)
  388. parent: Terminal.Gui.Point
  389. langs:
  390. - csharp
  391. name: Subtract(Point, Size)
  392. nameWithType: Point.Subtract(Point, Size)
  393. fullName: Point.Subtract(Point, Size)
  394. type: Method
  395. assemblies:
  396. - Terminal.Gui
  397. namespace: Terminal.Gui
  398. summary: Returns the result of subtracting specified Size from the specified Point.
  399. syntax:
  400. content: public static Terminal.Gui.Point Subtract (Terminal.Gui.Point pt, Terminal.Gui.Size sz);
  401. parameters:
  402. - id: pt
  403. type: Terminal.Gui.Point
  404. description: The Point to be subtracted from.
  405. - id: sz
  406. type: Terminal.Gui.Size
  407. description: The Size to subtract from the Point.
  408. return:
  409. type: Terminal.Gui.Point
  410. description: The Point that is the result of the subtraction operation.
  411. overload: Terminal.Gui.Point.Subtract*
  412. exceptions: []
  413. - uid: Terminal.Gui.Point.ToString
  414. id: ToString
  415. parent: Terminal.Gui.Point
  416. langs:
  417. - csharp
  418. name: ToString()
  419. nameWithType: Point.ToString()
  420. fullName: Point.ToString()
  421. type: Method
  422. assemblies:
  423. - Terminal.Gui
  424. namespace: Terminal.Gui
  425. summary: ToString Method
  426. remarks: Formats the Point as a string in coordinate notation.
  427. syntax:
  428. content: public override string ToString ();
  429. parameters: []
  430. return:
  431. type: System.String
  432. description: To be added.
  433. overload: Terminal.Gui.Point.ToString*
  434. exceptions: []
  435. - uid: Terminal.Gui.Point.X
  436. id: X
  437. parent: Terminal.Gui.Point
  438. langs:
  439. - csharp
  440. name: X
  441. nameWithType: Point.X
  442. fullName: Point.X
  443. type: Field
  444. assemblies:
  445. - Terminal.Gui
  446. namespace: Terminal.Gui
  447. summary: Gets or sets the x-coordinate of this Point.
  448. syntax:
  449. content: public int X;
  450. return:
  451. type: System.Int32
  452. description: To be added.
  453. exceptions: []
  454. - uid: Terminal.Gui.Point.Y
  455. id: Y
  456. parent: Terminal.Gui.Point
  457. langs:
  458. - csharp
  459. name: Y
  460. nameWithType: Point.Y
  461. fullName: Point.Y
  462. type: Field
  463. assemblies:
  464. - Terminal.Gui
  465. namespace: Terminal.Gui
  466. summary: Gets or sets the y-coordinate of this Point.
  467. syntax:
  468. content: public int Y;
  469. return:
  470. type: System.Int32
  471. description: To be added.
  472. exceptions: []
  473. references:
  474. - uid: System.ValueType
  475. parent: System
  476. isExternal: true
  477. name: ValueType
  478. nameWithType: ValueType
  479. fullName: System.ValueType
  480. - uid: Terminal.Gui.Point.#ctor(Terminal.Gui.Size)
  481. parent: Terminal.Gui.Point
  482. isExternal: false
  483. name: Point(Size)
  484. nameWithType: Point.Point(Size)
  485. fullName: Point.Point(Size)
  486. - uid: Terminal.Gui.Size
  487. parent: Terminal.Gui
  488. isExternal: false
  489. name: Size
  490. nameWithType: Size
  491. fullName: Terminal.Gui.Size
  492. - uid: Terminal.Gui.Point.#ctor(System.Int32,System.Int32)
  493. parent: Terminal.Gui.Point
  494. isExternal: false
  495. name: Point(Int32, Int32)
  496. nameWithType: Point.Point(Int32, Int32)
  497. fullName: Point.Point(Int32, Int32)
  498. - uid: System.Int32
  499. parent: System
  500. isExternal: true
  501. name: Int32
  502. nameWithType: Int32
  503. fullName: System.Int32
  504. - uid: Terminal.Gui.Point.Add(Terminal.Gui.Point,Terminal.Gui.Size)
  505. parent: Terminal.Gui.Point
  506. isExternal: false
  507. name: Add(Point, Size)
  508. nameWithType: Point.Add(Point, Size)
  509. fullName: Point.Add(Point, Size)
  510. - uid: Terminal.Gui.Point
  511. parent: Terminal.Gui
  512. isExternal: false
  513. name: Point
  514. nameWithType: Point
  515. fullName: Terminal.Gui.Point
  516. - uid: Terminal.Gui.Point.Empty
  517. parent: Terminal.Gui.Point
  518. isExternal: false
  519. name: Empty
  520. nameWithType: Point.Empty
  521. fullName: Point.Empty
  522. - uid: Terminal.Gui.Point.Equals(System.Object)
  523. parent: Terminal.Gui.Point
  524. isExternal: false
  525. name: Equals(Object)
  526. nameWithType: Point.Equals(Object)
  527. fullName: Point.Equals(Object)
  528. - uid: System.Boolean
  529. parent: System
  530. isExternal: true
  531. name: Boolean
  532. nameWithType: Boolean
  533. fullName: System.Boolean
  534. - uid: System.Object
  535. parent: System
  536. isExternal: true
  537. name: Object
  538. nameWithType: Object
  539. fullName: System.Object
  540. - uid: Terminal.Gui.Point.GetHashCode
  541. parent: Terminal.Gui.Point
  542. isExternal: false
  543. name: GetHashCode()
  544. nameWithType: Point.GetHashCode()
  545. fullName: Point.GetHashCode()
  546. - uid: Terminal.Gui.Point.IsEmpty
  547. parent: Terminal.Gui.Point
  548. isExternal: false
  549. name: IsEmpty
  550. nameWithType: Point.IsEmpty
  551. fullName: Point.IsEmpty
  552. - uid: Terminal.Gui.Point.Offset(System.Int32,System.Int32)
  553. parent: Terminal.Gui.Point
  554. isExternal: false
  555. name: Offset(Int32, Int32)
  556. nameWithType: Point.Offset(Int32, Int32)
  557. fullName: Point.Offset(Int32, Int32)
  558. - uid: Terminal.Gui.Point.Offset(Terminal.Gui.Point)
  559. parent: Terminal.Gui.Point
  560. isExternal: false
  561. name: Offset(Point)
  562. nameWithType: Point.Offset(Point)
  563. fullName: Point.Offset(Point)
  564. - uid: Terminal.Gui.Point.op_Addition(Terminal.Gui.Point,Terminal.Gui.Size)
  565. parent: Terminal.Gui.Point
  566. isExternal: false
  567. name: op_Addition(Point, Size)
  568. nameWithType: Point.op_Addition(Point, Size)
  569. fullName: Point.op_Addition(Point, Size)
  570. - uid: Terminal.Gui.Point.op_Equality(Terminal.Gui.Point,Terminal.Gui.Point)
  571. parent: Terminal.Gui.Point
  572. isExternal: false
  573. name: op_Equality(Point, Point)
  574. nameWithType: Point.op_Equality(Point, Point)
  575. fullName: Point.op_Equality(Point, Point)
  576. - uid: Terminal.Gui.Point.op_Explicit(Terminal.Gui.Point to Terminal.Gui.Size)
  577. parent: Terminal.Gui.Point
  578. isExternal: false
  579. name: op_Explicit(Point to Size)
  580. nameWithType: Point.op_Explicit(Point to Size)
  581. fullName: Point.op_Explicit(Point to Size)
  582. - uid: Terminal.Gui.Point.op_Inequality(Terminal.Gui.Point,Terminal.Gui.Point)
  583. parent: Terminal.Gui.Point
  584. isExternal: false
  585. name: op_Inequality(Point, Point)
  586. nameWithType: Point.op_Inequality(Point, Point)
  587. fullName: Point.op_Inequality(Point, Point)
  588. - uid: Terminal.Gui.Point.op_Subtraction(Terminal.Gui.Point,Terminal.Gui.Size)
  589. parent: Terminal.Gui.Point
  590. isExternal: false
  591. name: op_Subtraction(Point, Size)
  592. nameWithType: Point.op_Subtraction(Point, Size)
  593. fullName: Point.op_Subtraction(Point, Size)
  594. - uid: Terminal.Gui.Point.Subtract(Terminal.Gui.Point,Terminal.Gui.Size)
  595. parent: Terminal.Gui.Point
  596. isExternal: false
  597. name: Subtract(Point, Size)
  598. nameWithType: Point.Subtract(Point, Size)
  599. fullName: Point.Subtract(Point, Size)
  600. - uid: Terminal.Gui.Point.ToString
  601. parent: Terminal.Gui.Point
  602. isExternal: false
  603. name: ToString()
  604. nameWithType: Point.ToString()
  605. fullName: Point.ToString()
  606. - uid: System.String
  607. parent: System
  608. isExternal: true
  609. name: String
  610. nameWithType: String
  611. fullName: System.String
  612. - uid: Terminal.Gui.Point.X
  613. parent: Terminal.Gui.Point
  614. isExternal: false
  615. name: X
  616. nameWithType: Point.X
  617. fullName: Point.X
  618. - uid: Terminal.Gui.Point.Y
  619. parent: Terminal.Gui.Point
  620. isExternal: false
  621. name: Y
  622. nameWithType: Point.Y
  623. fullName: Point.Y
  624. - uid: Terminal.Gui.Point.#ctor*
  625. parent: Terminal.Gui.Point
  626. isExternal: false
  627. name: Point
  628. nameWithType: Point.Point
  629. fullName: Point.Point
  630. - uid: Terminal.Gui.Point.Add*
  631. parent: Terminal.Gui.Point
  632. isExternal: false
  633. name: Add
  634. nameWithType: Point.Add
  635. fullName: Point.Add
  636. - uid: Terminal.Gui.Point.Equals*
  637. parent: Terminal.Gui.Point
  638. isExternal: false
  639. name: Equals
  640. nameWithType: Point.Equals
  641. fullName: Point.Equals
  642. - uid: Terminal.Gui.Point.GetHashCode*
  643. parent: Terminal.Gui.Point
  644. isExternal: false
  645. name: GetHashCode
  646. nameWithType: Point.GetHashCode
  647. fullName: Point.GetHashCode
  648. - uid: Terminal.Gui.Point.IsEmpty*
  649. parent: Terminal.Gui.Point
  650. isExternal: false
  651. name: IsEmpty
  652. nameWithType: Point.IsEmpty
  653. fullName: Point.IsEmpty
  654. - uid: Terminal.Gui.Point.Offset*
  655. parent: Terminal.Gui.Point
  656. isExternal: false
  657. name: Offset
  658. nameWithType: Point.Offset
  659. fullName: Point.Offset
  660. - uid: Terminal.Gui.Point.op_Addition*
  661. parent: Terminal.Gui.Point
  662. isExternal: false
  663. name: op_Addition
  664. nameWithType: Point.op_Addition
  665. fullName: Point.op_Addition
  666. - uid: Terminal.Gui.Point.op_Equality*
  667. parent: Terminal.Gui.Point
  668. isExternal: false
  669. name: op_Equality
  670. nameWithType: Point.op_Equality
  671. fullName: Point.op_Equality
  672. - uid: Terminal.Gui.Point.op_Explicit*
  673. parent: Terminal.Gui.Point
  674. isExternal: false
  675. name: op_Explicit
  676. nameWithType: Point.op_Explicit
  677. fullName: Point.op_Explicit
  678. - uid: Terminal.Gui.Point.op_Inequality*
  679. parent: Terminal.Gui.Point
  680. isExternal: false
  681. name: op_Inequality
  682. nameWithType: Point.op_Inequality
  683. fullName: Point.op_Inequality
  684. - uid: Terminal.Gui.Point.op_Subtraction*
  685. parent: Terminal.Gui.Point
  686. isExternal: false
  687. name: op_Subtraction
  688. nameWithType: Point.op_Subtraction
  689. fullName: Point.op_Subtraction
  690. - uid: Terminal.Gui.Point.Subtract*
  691. parent: Terminal.Gui.Point
  692. isExternal: false
  693. name: Subtract
  694. nameWithType: Point.Subtract
  695. fullName: Point.Subtract
  696. - uid: Terminal.Gui.Point.ToString*
  697. parent: Terminal.Gui.Point
  698. isExternal: false
  699. name: ToString
  700. nameWithType: Point.ToString
  701. fullName: Point.ToString