123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647 |
- ### YamlMime:ManagedReference
- items:
- - uid: Terminal.Size
- id: Size
- children:
- - Terminal.Size.#ctor(Terminal.Point)
- - Terminal.Size.#ctor(System.Int32,System.Int32)
- - Terminal.Size.Add(Terminal.Size,Terminal.Size)
- - Terminal.Size.Empty
- - Terminal.Size.Equals(System.Object)
- - Terminal.Size.GetHashCode
- - Terminal.Size.Height
- - Terminal.Size.IsEmpty
- - Terminal.Size.op_Addition(Terminal.Size,Terminal.Size)
- - Terminal.Size.op_Equality(Terminal.Size,Terminal.Size)
- - Terminal.Size.op_Explicit(Terminal.Size to Terminal.Point)
- - Terminal.Size.op_Inequality(Terminal.Size,Terminal.Size)
- - Terminal.Size.op_Subtraction(Terminal.Size,Terminal.Size)
- - Terminal.Size.Subtract(Terminal.Size,Terminal.Size)
- - Terminal.Size.ToString
- - Terminal.Size.Width
- langs:
- - csharp
- name: Size
- nameWithType: Size
- fullName: Terminal.Size
- type: Struct
- assemblies:
- - Terminal
- namespace: Terminal
- summary: Stores an ordered pair of integers, which specify a Height and Width.
- syntax:
- content: public struct Size
- inheritance:
- - System.ValueType
- implements: []
- - uid: Terminal.Size.#ctor(Terminal.Point)
- id: '#ctor(Terminal.Point)'
- parent: Terminal.Size
- langs:
- - csharp
- name: Size(Point)
- nameWithType: Size.Size(Point)
- fullName: Size.Size(Point)
- type: Constructor
- assemblies:
- - Terminal
- namespace: Terminal
- summary: Size Constructor
- remarks: Creates a Size from a Point value.
- syntax:
- content: public Size (Terminal.Point pt);
- parameters:
- - id: pt
- type: Terminal.Point
- description: To be added.
- overload: Terminal.Size.#ctor*
- exceptions: []
- - uid: Terminal.Size.#ctor(System.Int32,System.Int32)
- id: '#ctor(System.Int32,System.Int32)'
- parent: Terminal.Size
- langs:
- - csharp
- name: Size(Int32, Int32)
- nameWithType: Size.Size(Int32, Int32)
- fullName: Size.Size(Int32, Int32)
- type: Constructor
- assemblies:
- - Terminal
- namespace: Terminal
- summary: Size Constructor
- remarks: Creates a Size from specified dimensions.
- syntax:
- content: public Size (int width, int height);
- parameters:
- - id: width
- type: System.Int32
- description: To be added.
- - id: height
- type: System.Int32
- description: To be added.
- overload: Terminal.Size.#ctor*
- exceptions: []
- - uid: Terminal.Size.Add(Terminal.Size,Terminal.Size)
- id: Add(Terminal.Size,Terminal.Size)
- parent: Terminal.Size
- langs:
- - csharp
- name: Add(Size, Size)
- nameWithType: Size.Add(Size, Size)
- fullName: Size.Add(Size, Size)
- type: Method
- assemblies:
- - Terminal
- namespace: Terminal
- summary: Adds the width and height of one Size structure to the width and height of another Size structure.
- syntax:
- content: public static Terminal.Size Add (Terminal.Size sz1, Terminal.Size sz2);
- parameters:
- - id: sz1
- type: Terminal.Size
- description: The first Size structure to add.
- - id: sz2
- type: Terminal.Size
- description: The second Size structure to add.
- return:
- type: Terminal.Size
- description: The add.
- overload: Terminal.Size.Add*
- exceptions: []
- - uid: Terminal.Size.Empty
- id: Empty
- parent: Terminal.Size
- langs:
- - csharp
- name: Empty
- nameWithType: Size.Empty
- fullName: Size.Empty
- type: Field
- assemblies:
- - Terminal
- namespace: Terminal
- summary: Gets a Size structure that has a Height and Width value of 0.
- syntax:
- content: public static readonly Terminal.Size Empty;
- return:
- type: Terminal.Size
- description: To be added.
- exceptions: []
- - uid: Terminal.Size.Equals(System.Object)
- id: Equals(System.Object)
- parent: Terminal.Size
- langs:
- - csharp
- name: Equals(Object)
- nameWithType: Size.Equals(Object)
- fullName: Size.Equals(Object)
- type: Method
- assemblies:
- - Terminal
- namespace: Terminal
- summary: Equals Method
- remarks: Checks equivalence of this Size and another object.
- syntax:
- content: public override bool Equals (object obj);
- parameters:
- - id: obj
- type: System.Object
- description: To be added.
- return:
- type: System.Boolean
- description: To be added.
- overload: Terminal.Size.Equals*
- exceptions: []
- - uid: Terminal.Size.GetHashCode
- id: GetHashCode
- parent: Terminal.Size
- langs:
- - csharp
- name: GetHashCode()
- nameWithType: Size.GetHashCode()
- fullName: Size.GetHashCode()
- type: Method
- assemblies:
- - Terminal
- namespace: Terminal
- summary: GetHashCode Method
- remarks: Calculates a hashing value.
- syntax:
- content: public override int GetHashCode ();
- parameters: []
- return:
- type: System.Int32
- description: To be added.
- overload: Terminal.Size.GetHashCode*
- exceptions: []
- - uid: Terminal.Size.Height
- id: Height
- parent: Terminal.Size
- langs:
- - csharp
- name: Height
- nameWithType: Size.Height
- fullName: Size.Height
- type: Property
- assemblies:
- - Terminal
- namespace: Terminal
- summary: Height Property
- remarks: The Height coordinate of the Size.
- syntax:
- content: public int Height { get; set; }
- return:
- type: System.Int32
- description: To be added.
- overload: Terminal.Size.Height*
- exceptions: []
- - uid: Terminal.Size.IsEmpty
- id: IsEmpty
- parent: Terminal.Size
- langs:
- - csharp
- name: IsEmpty
- nameWithType: Size.IsEmpty
- fullName: Size.IsEmpty
- type: Property
- assemblies:
- - Terminal
- namespace: Terminal
- summary: IsEmpty Property
- remarks: Indicates if both Width and Height are zero.
- syntax:
- content: public bool IsEmpty { get; }
- return:
- type: System.Boolean
- description: To be added.
- overload: Terminal.Size.IsEmpty*
- exceptions: []
- - uid: Terminal.Size.op_Addition(Terminal.Size,Terminal.Size)
- id: op_Addition(Terminal.Size,Terminal.Size)
- parent: Terminal.Size
- langs:
- - csharp
- name: op_Addition(Size, Size)
- nameWithType: Size.op_Addition(Size, Size)
- fullName: Size.op_Addition(Size, Size)
- type: Operator
- assemblies:
- - Terminal
- namespace: Terminal
- summary: Addition Operator
- remarks: Addition of two Size structures.
- syntax:
- content: public static Terminal.Size op_Addition (Terminal.Size sz1, Terminal.Size sz2);
- parameters:
- - id: sz1
- type: Terminal.Size
- description: To be added.
- - id: sz2
- type: Terminal.Size
- description: To be added.
- return:
- type: Terminal.Size
- description: To be added.
- overload: Terminal.Size.op_Addition*
- exceptions: []
- - uid: Terminal.Size.op_Equality(Terminal.Size,Terminal.Size)
- id: op_Equality(Terminal.Size,Terminal.Size)
- parent: Terminal.Size
- langs:
- - csharp
- name: op_Equality(Size, Size)
- nameWithType: Size.op_Equality(Size, Size)
- fullName: Size.op_Equality(Size, Size)
- type: Operator
- assemblies:
- - Terminal
- namespace: Terminal
- summary: Equality Operator
- remarks: "Compares two Size objects. The return value is\n based on the equivalence of the Width and Height \n properties of the two Sizes."
- syntax:
- content: public static bool op_Equality (Terminal.Size sz1, Terminal.Size sz2);
- parameters:
- - id: sz1
- type: Terminal.Size
- description: To be added.
- - id: sz2
- type: Terminal.Size
- description: To be added.
- return:
- type: System.Boolean
- description: To be added.
- overload: Terminal.Size.op_Equality*
- exceptions: []
- - uid: Terminal.Size.op_Explicit(Terminal.Size to Terminal.Point)
- id: op_Explicit(Terminal.Size to Terminal.Point)
- parent: Terminal.Size
- langs:
- - csharp
- name: op_Explicit(Size to Point)
- nameWithType: Size.op_Explicit(Size to Point)
- fullName: Size.op_Explicit(Size to Point)
- type: Operator
- assemblies:
- - Terminal
- namespace: Terminal
- summary: Size to Point Conversion
- remarks: "Returns a Point based on the dimensions of a given \n Size. Requires explicit cast."
- syntax:
- content: public static Terminal.Point op_Explicit (Terminal.Size size);
- parameters:
- - id: size
- type: Terminal.Size
- description: To be added.
- return:
- type: Terminal.Point
- description: To be added.
- overload: Terminal.Size.op_Explicit*
- exceptions: []
- - uid: Terminal.Size.op_Inequality(Terminal.Size,Terminal.Size)
- id: op_Inequality(Terminal.Size,Terminal.Size)
- parent: Terminal.Size
- langs:
- - csharp
- name: op_Inequality(Size, Size)
- nameWithType: Size.op_Inequality(Size, Size)
- fullName: Size.op_Inequality(Size, Size)
- type: Operator
- assemblies:
- - Terminal
- namespace: Terminal
- summary: Inequality Operator
- remarks: "Compares two Size objects. The return value is\n based on the equivalence of the Width and Height \n properties of the two Sizes."
- syntax:
- content: public static bool op_Inequality (Terminal.Size sz1, Terminal.Size sz2);
- parameters:
- - id: sz1
- type: Terminal.Size
- description: To be added.
- - id: sz2
- type: Terminal.Size
- description: To be added.
- return:
- type: System.Boolean
- description: To be added.
- overload: Terminal.Size.op_Inequality*
- exceptions: []
- - uid: Terminal.Size.op_Subtraction(Terminal.Size,Terminal.Size)
- id: op_Subtraction(Terminal.Size,Terminal.Size)
- parent: Terminal.Size
- langs:
- - csharp
- name: op_Subtraction(Size, Size)
- nameWithType: Size.op_Subtraction(Size, Size)
- fullName: Size.op_Subtraction(Size, Size)
- type: Operator
- assemblies:
- - Terminal
- namespace: Terminal
- summary: Subtraction Operator
- remarks: Subtracts two Size structures.
- syntax:
- content: public static Terminal.Size op_Subtraction (Terminal.Size sz1, Terminal.Size sz2);
- parameters:
- - id: sz1
- type: Terminal.Size
- description: To be added.
- - id: sz2
- type: Terminal.Size
- description: To be added.
- return:
- type: Terminal.Size
- description: To be added.
- overload: Terminal.Size.op_Subtraction*
- exceptions: []
- - uid: Terminal.Size.Subtract(Terminal.Size,Terminal.Size)
- id: Subtract(Terminal.Size,Terminal.Size)
- parent: Terminal.Size
- langs:
- - csharp
- name: Subtract(Size, Size)
- nameWithType: Size.Subtract(Size, Size)
- fullName: Size.Subtract(Size, Size)
- type: Method
- assemblies:
- - Terminal
- namespace: Terminal
- syntax:
- content: public static Terminal.Size Subtract (Terminal.Size sz1, Terminal.Size sz2);
- parameters:
- - id: sz1
- type: Terminal.Size
- description: To be added.
- - id: sz2
- type: Terminal.Size
- description: To be added.
- return:
- type: Terminal.Size
- description: To be added.
- overload: Terminal.Size.Subtract*
- exceptions: []
- - uid: Terminal.Size.ToString
- id: ToString
- parent: Terminal.Size
- langs:
- - csharp
- name: ToString()
- nameWithType: Size.ToString()
- fullName: Size.ToString()
- type: Method
- assemblies:
- - Terminal
- namespace: Terminal
- summary: ToString Method
- remarks: Formats the Size as a string in coordinate notation.
- syntax:
- content: public override string ToString ();
- parameters: []
- return:
- type: System.String
- description: To be added.
- overload: Terminal.Size.ToString*
- exceptions: []
- - uid: Terminal.Size.Width
- id: Width
- parent: Terminal.Size
- langs:
- - csharp
- name: Width
- nameWithType: Size.Width
- fullName: Size.Width
- type: Property
- assemblies:
- - Terminal
- namespace: Terminal
- summary: Width Property
- remarks: The Width coordinate of the Size.
- syntax:
- content: public int Width { get; set; }
- return:
- type: System.Int32
- description: To be added.
- overload: Terminal.Size.Width*
- exceptions: []
- references:
- - uid: System.ValueType
- parent: System
- isExternal: true
- name: ValueType
- nameWithType: ValueType
- fullName: System.ValueType
- - uid: Terminal.Size.#ctor(Terminal.Point)
- parent: Terminal.Size
- isExternal: false
- name: Size(Point)
- nameWithType: Size.Size(Point)
- fullName: Size.Size(Point)
- - uid: Terminal.Point
- parent: Terminal
- isExternal: false
- name: Point
- nameWithType: Point
- fullName: Terminal.Point
- - uid: Terminal.Size.#ctor(System.Int32,System.Int32)
- parent: Terminal.Size
- isExternal: false
- name: Size(Int32, Int32)
- nameWithType: Size.Size(Int32, Int32)
- fullName: Size.Size(Int32, Int32)
- - uid: System.Int32
- parent: System
- isExternal: true
- name: Int32
- nameWithType: Int32
- fullName: System.Int32
- - uid: Terminal.Size.Add(Terminal.Size,Terminal.Size)
- parent: Terminal.Size
- isExternal: false
- name: Add(Size, Size)
- nameWithType: Size.Add(Size, Size)
- fullName: Size.Add(Size, Size)
- - uid: Terminal.Size
- parent: Terminal
- isExternal: false
- name: Size
- nameWithType: Size
- fullName: Terminal.Size
- - uid: Terminal.Size.Empty
- parent: Terminal.Size
- isExternal: false
- name: Empty
- nameWithType: Size.Empty
- fullName: Size.Empty
- - uid: Terminal.Size.Equals(System.Object)
- parent: Terminal.Size
- isExternal: false
- name: Equals(Object)
- nameWithType: Size.Equals(Object)
- fullName: Size.Equals(Object)
- - uid: System.Boolean
- parent: System
- isExternal: true
- name: Boolean
- nameWithType: Boolean
- fullName: System.Boolean
- - uid: System.Object
- parent: System
- isExternal: true
- name: Object
- nameWithType: Object
- fullName: System.Object
- - uid: Terminal.Size.GetHashCode
- parent: Terminal.Size
- isExternal: false
- name: GetHashCode()
- nameWithType: Size.GetHashCode()
- fullName: Size.GetHashCode()
- - uid: Terminal.Size.Height
- parent: Terminal.Size
- isExternal: false
- name: Height
- nameWithType: Size.Height
- fullName: Size.Height
- - uid: Terminal.Size.IsEmpty
- parent: Terminal.Size
- isExternal: false
- name: IsEmpty
- nameWithType: Size.IsEmpty
- fullName: Size.IsEmpty
- - uid: Terminal.Size.op_Addition(Terminal.Size,Terminal.Size)
- parent: Terminal.Size
- isExternal: false
- name: op_Addition(Size, Size)
- nameWithType: Size.op_Addition(Size, Size)
- fullName: Size.op_Addition(Size, Size)
- - uid: Terminal.Size.op_Equality(Terminal.Size,Terminal.Size)
- parent: Terminal.Size
- isExternal: false
- name: op_Equality(Size, Size)
- nameWithType: Size.op_Equality(Size, Size)
- fullName: Size.op_Equality(Size, Size)
- - uid: Terminal.Size.op_Explicit(Terminal.Size to Terminal.Point)
- parent: Terminal.Size
- isExternal: false
- name: op_Explicit(Size to Point)
- nameWithType: Size.op_Explicit(Size to Point)
- fullName: Size.op_Explicit(Size to Point)
- - uid: Terminal.Size.op_Inequality(Terminal.Size,Terminal.Size)
- parent: Terminal.Size
- isExternal: false
- name: op_Inequality(Size, Size)
- nameWithType: Size.op_Inequality(Size, Size)
- fullName: Size.op_Inequality(Size, Size)
- - uid: Terminal.Size.op_Subtraction(Terminal.Size,Terminal.Size)
- parent: Terminal.Size
- isExternal: false
- name: op_Subtraction(Size, Size)
- nameWithType: Size.op_Subtraction(Size, Size)
- fullName: Size.op_Subtraction(Size, Size)
- - uid: Terminal.Size.Subtract(Terminal.Size,Terminal.Size)
- parent: Terminal.Size
- isExternal: false
- name: Subtract(Size, Size)
- nameWithType: Size.Subtract(Size, Size)
- fullName: Size.Subtract(Size, Size)
- - uid: Terminal.Size.ToString
- parent: Terminal.Size
- isExternal: false
- name: ToString()
- nameWithType: Size.ToString()
- fullName: Size.ToString()
- - uid: System.String
- parent: System
- isExternal: true
- name: String
- nameWithType: String
- fullName: System.String
- - uid: Terminal.Size.Width
- parent: Terminal.Size
- isExternal: false
- name: Width
- nameWithType: Size.Width
- fullName: Size.Width
- - uid: Terminal.Size.#ctor*
- parent: Terminal.Size
- isExternal: false
- name: Size
- nameWithType: Size.Size
- fullName: Size.Size
- - uid: Terminal.Size.Add*
- parent: Terminal.Size
- isExternal: false
- name: Add
- nameWithType: Size.Add
- fullName: Size.Add
- - uid: Terminal.Size.Equals*
- parent: Terminal.Size
- isExternal: false
- name: Equals
- nameWithType: Size.Equals
- fullName: Size.Equals
- - uid: Terminal.Size.GetHashCode*
- parent: Terminal.Size
- isExternal: false
- name: GetHashCode
- nameWithType: Size.GetHashCode
- fullName: Size.GetHashCode
- - uid: Terminal.Size.Height*
- parent: Terminal.Size
- isExternal: false
- name: Height
- nameWithType: Size.Height
- fullName: Size.Height
- - uid: Terminal.Size.IsEmpty*
- parent: Terminal.Size
- isExternal: false
- name: IsEmpty
- nameWithType: Size.IsEmpty
- fullName: Size.IsEmpty
- - uid: Terminal.Size.op_Addition*
- parent: Terminal.Size
- isExternal: false
- name: op_Addition
- nameWithType: Size.op_Addition
- fullName: Size.op_Addition
- - uid: Terminal.Size.op_Equality*
- parent: Terminal.Size
- isExternal: false
- name: op_Equality
- nameWithType: Size.op_Equality
- fullName: Size.op_Equality
- - uid: Terminal.Size.op_Explicit*
- parent: Terminal.Size
- isExternal: false
- name: op_Explicit
- nameWithType: Size.op_Explicit
- fullName: Size.op_Explicit
- - uid: Terminal.Size.op_Inequality*
- parent: Terminal.Size
- isExternal: false
- name: op_Inequality
- nameWithType: Size.op_Inequality
- fullName: Size.op_Inequality
- - uid: Terminal.Size.op_Subtraction*
- parent: Terminal.Size
- isExternal: false
- name: op_Subtraction
- nameWithType: Size.op_Subtraction
- fullName: Size.op_Subtraction
- - uid: Terminal.Size.Subtract*
- parent: Terminal.Size
- isExternal: false
- name: Subtract
- nameWithType: Size.Subtract
- fullName: Size.Subtract
- - uid: Terminal.Size.ToString*
- parent: Terminal.Size
- isExternal: false
- name: ToString
- nameWithType: Size.ToString
- fullName: Size.ToString
- - uid: Terminal.Size.Width*
- parent: Terminal.Size
- isExternal: false
- name: Width
- nameWithType: Size.Width
- fullName: Size.Width
|