### YamlMime:ManagedReference items: - uid: Terminal.CheckBox id: CheckBox children: - Terminal.CheckBox.#ctor(System.Int32,System.Int32,System.String) - Terminal.CheckBox.#ctor(System.Int32,System.Int32,System.String,System.Boolean) - Terminal.CheckBox.Checked - Terminal.CheckBox.MouseEvent(Terminal.MouseEvent) - Terminal.CheckBox.PositionCursor - Terminal.CheckBox.ProcessKey(Terminal.KeyEvent) - Terminal.CheckBox.Redraw(Terminal.Rect) - Terminal.CheckBox.Text - Terminal.CheckBox.Toggled langs: - csharp name: CheckBox nameWithType: CheckBox fullName: Terminal.CheckBox type: Class assemblies: - Terminal namespace: Terminal syntax: content: 'public class CheckBox : Terminal.View' inheritance: - System.Object - Terminal.Responder - Terminal.View implements: [] inheritedMembers: - Terminal.Responder.CanFocus - Terminal.View.Add(Terminal.View) - Terminal.View.Add(Terminal.View[]) - Terminal.View.AddCh(System.Int32,System.Int32,System.Int32) - Terminal.View.Bounds - Terminal.View.ChildNeedsDisplay - Terminal.View.Clear - Terminal.View.ClearNeedsDisplay - Terminal.View.ColorScheme - Terminal.View.DrawFrame(Terminal.Rect,System.Boolean) - Terminal.View.DrawHotString(System.String,System.Boolean,Terminal.ColorScheme) - Terminal.View.DrawHotString(System.String,Terminal.Attribute,Terminal.Attribute) - Terminal.View.Driver - Terminal.View.EnsureFocus - Terminal.View.Focused - Terminal.View.FocusFirst - Terminal.View.FocusLast - Terminal.View.FocusNext - Terminal.View.FocusPrev - Terminal.View.Frame - Terminal.View.GetEnumerator - Terminal.View.HasFocus - Terminal.View.Id - Terminal.View.LayoutSubviews - Terminal.View.MostFocused - Terminal.View.Move(System.Int32,System.Int32) - Terminal.View.ProcessColdKey(Terminal.KeyEvent) - Terminal.View.ProcessHotKey(Terminal.KeyEvent) - Terminal.View.Remove(Terminal.View) - Terminal.View.RemoveAll - Terminal.View.ScreenToView(System.Int32,System.Int32) - Terminal.View.SetFocus(Terminal.View) - Terminal.View.SetNeedsDisplay - Terminal.View.SetNeedsDisplay(Terminal.Rect) - Terminal.View.Subviews - Terminal.View.SuperView - Terminal.View.ToString - Terminal.View.WantMousePositionReports - uid: Terminal.CheckBox.#ctor(System.Int32,System.Int32,System.String) id: '#ctor(System.Int32,System.Int32,System.String)' parent: Terminal.CheckBox langs: - csharp name: CheckBox(Int32, Int32, String) nameWithType: CheckBox.CheckBox(Int32, Int32, String) fullName: CheckBox.CheckBox(Int32, Int32, String) type: Constructor assemblies: - Terminal namespace: Terminal summary: >- Public constructor, creates a CheckButton based on the given text at the given position. remarks: >- The size of CheckButton is computed based on the text length. This CheckButton is not toggled. syntax: content: public CheckBox (int x, int y, string s); parameters: - id: x type: System.Int32 description: To be added. - id: y type: System.Int32 description: To be added. - id: s type: System.String description: To be added. overload: Terminal.CheckBox.#ctor* exceptions: [] - uid: Terminal.CheckBox.#ctor(System.Int32,System.Int32,System.String,System.Boolean) id: '#ctor(System.Int32,System.Int32,System.String,System.Boolean)' parent: Terminal.CheckBox langs: - csharp name: CheckBox(Int32, Int32, String, Boolean) nameWithType: CheckBox.CheckBox(Int32, Int32, String, Boolean) fullName: CheckBox.CheckBox(Int32, Int32, String, Boolean) type: Constructor assemblies: - Terminal namespace: Terminal summary: >- Public constructor, creates a CheckButton based on the given text at the given position and a state. remarks: >- The size of CheckButton is computed based on the text length. syntax: content: public CheckBox (int x, int y, string s, bool is_checked); parameters: - id: x type: System.Int32 description: To be added. - id: y type: System.Int32 description: To be added. - id: s type: System.String description: To be added. - id: is_checked type: System.Boolean description: To be added. overload: Terminal.CheckBox.#ctor* exceptions: [] - uid: Terminal.CheckBox.Checked id: Checked parent: Terminal.CheckBox langs: - csharp name: Checked nameWithType: CheckBox.Checked fullName: CheckBox.Checked type: Property assemblies: - Terminal namespace: Terminal summary: The state of the checkbox. syntax: content: public bool Checked { get; set; } return: type: System.Boolean description: To be added. overload: Terminal.CheckBox.Checked* exceptions: [] - uid: Terminal.CheckBox.MouseEvent(Terminal.MouseEvent) id: MouseEvent(Terminal.MouseEvent) parent: Terminal.CheckBox langs: - csharp name: MouseEvent(MouseEvent) nameWithType: CheckBox.MouseEvent(MouseEvent) fullName: CheckBox.MouseEvent(MouseEvent) type: Method assemblies: - Terminal namespace: Terminal syntax: content: public override bool MouseEvent (Terminal.MouseEvent me); parameters: - id: me type: Terminal.MouseEvent description: To be added. return: type: System.Boolean description: To be added. overload: Terminal.CheckBox.MouseEvent* exceptions: [] - uid: Terminal.CheckBox.PositionCursor id: PositionCursor parent: Terminal.CheckBox langs: - csharp name: PositionCursor() nameWithType: CheckBox.PositionCursor() fullName: CheckBox.PositionCursor() type: Method assemblies: - Terminal namespace: Terminal syntax: content: public override void PositionCursor (); parameters: [] overload: Terminal.CheckBox.PositionCursor* exceptions: [] - uid: Terminal.CheckBox.ProcessKey(Terminal.KeyEvent) id: ProcessKey(Terminal.KeyEvent) parent: Terminal.CheckBox langs: - csharp name: ProcessKey(KeyEvent) nameWithType: CheckBox.ProcessKey(KeyEvent) fullName: CheckBox.ProcessKey(KeyEvent) type: Method assemblies: - Terminal namespace: Terminal syntax: content: public override bool ProcessKey (Terminal.KeyEvent kb); parameters: - id: kb type: Terminal.KeyEvent description: To be added. return: type: System.Boolean description: To be added. overload: Terminal.CheckBox.ProcessKey* exceptions: [] - uid: Terminal.CheckBox.Redraw(Terminal.Rect) id: Redraw(Terminal.Rect) parent: Terminal.CheckBox langs: - csharp name: Redraw(Rect) nameWithType: CheckBox.Redraw(Rect) fullName: CheckBox.Redraw(Rect) type: Method assemblies: - Terminal namespace: Terminal syntax: content: public override void Redraw (Terminal.Rect region); parameters: - id: region type: Terminal.Rect description: To be added. overload: Terminal.CheckBox.Redraw* exceptions: [] - uid: Terminal.CheckBox.Text id: Text parent: Terminal.CheckBox langs: - csharp name: Text nameWithType: CheckBox.Text fullName: CheckBox.Text type: Property assemblies: - Terminal namespace: Terminal summary: The text displayed by this widget. syntax: content: public string Text { get; set; } return: type: System.String description: To be added. overload: Terminal.CheckBox.Text* exceptions: [] - uid: Terminal.CheckBox.Toggled id: Toggled parent: Terminal.CheckBox langs: - csharp name: Toggled nameWithType: CheckBox.Toggled fullName: CheckBox.Toggled type: Event assemblies: - Terminal namespace: Terminal summary: Toggled event, raised when the CheckButton is toggled. remarks: >- Client code can hook up to this event, it is raised when the checkbutton is activated either with the mouse or the keyboard. syntax: content: public event EventHandler Toggled; return: type: System.EventHandler description: To be added. exceptions: [] references: - uid: Terminal.View parent: Terminal isExternal: false name: View nameWithType: View fullName: Terminal.View - uid: Terminal.CheckBox.#ctor(System.Int32,System.Int32,System.String) parent: Terminal.CheckBox isExternal: false name: CheckBox(Int32, Int32, String) nameWithType: CheckBox.CheckBox(Int32, Int32, String) fullName: CheckBox.CheckBox(Int32, Int32, String) - uid: System.Int32 parent: System isExternal: true name: Int32 nameWithType: Int32 fullName: System.Int32 - uid: System.String parent: System isExternal: true name: String nameWithType: String fullName: System.String - uid: Terminal.CheckBox.#ctor(System.Int32,System.Int32,System.String,System.Boolean) parent: Terminal.CheckBox isExternal: false name: CheckBox(Int32, Int32, String, Boolean) nameWithType: CheckBox.CheckBox(Int32, Int32, String, Boolean) fullName: CheckBox.CheckBox(Int32, Int32, String, Boolean) - uid: System.Boolean parent: System isExternal: true name: Boolean nameWithType: Boolean fullName: System.Boolean - uid: Terminal.CheckBox.Checked parent: Terminal.CheckBox isExternal: false name: Checked nameWithType: CheckBox.Checked fullName: CheckBox.Checked - uid: Terminal.CheckBox.MouseEvent(Terminal.MouseEvent) parent: Terminal.CheckBox isExternal: false name: MouseEvent(MouseEvent) nameWithType: CheckBox.MouseEvent(MouseEvent) fullName: CheckBox.MouseEvent(MouseEvent) - uid: Terminal.MouseEvent parent: Terminal isExternal: false name: MouseEvent nameWithType: MouseEvent fullName: Terminal.MouseEvent - uid: Terminal.CheckBox.PositionCursor parent: Terminal.CheckBox isExternal: false name: PositionCursor() nameWithType: CheckBox.PositionCursor() fullName: CheckBox.PositionCursor() - uid: Terminal.CheckBox.ProcessKey(Terminal.KeyEvent) parent: Terminal.CheckBox isExternal: false name: ProcessKey(KeyEvent) nameWithType: CheckBox.ProcessKey(KeyEvent) fullName: CheckBox.ProcessKey(KeyEvent) - uid: Terminal.KeyEvent parent: Terminal isExternal: false name: KeyEvent nameWithType: KeyEvent fullName: Terminal.KeyEvent - uid: Terminal.CheckBox.Redraw(Terminal.Rect) parent: Terminal.CheckBox isExternal: false name: Redraw(Rect) nameWithType: CheckBox.Redraw(Rect) fullName: CheckBox.Redraw(Rect) - uid: Terminal.Rect parent: Terminal isExternal: false name: Rect nameWithType: Rect fullName: Terminal.Rect - uid: Terminal.CheckBox.Text parent: Terminal.CheckBox isExternal: false name: Text nameWithType: CheckBox.Text fullName: CheckBox.Text - uid: Terminal.CheckBox.Toggled parent: Terminal.CheckBox isExternal: false name: Toggled nameWithType: CheckBox.Toggled fullName: CheckBox.Toggled - uid: System.EventHandler parent: System isExternal: true name: EventHandler nameWithType: EventHandler fullName: System.EventHandler - uid: Terminal.CheckBox.#ctor* parent: Terminal.CheckBox isExternal: false name: CheckBox nameWithType: CheckBox.CheckBox fullName: CheckBox.CheckBox - uid: Terminal.CheckBox.Checked* parent: Terminal.CheckBox isExternal: false name: Checked nameWithType: CheckBox.Checked fullName: CheckBox.Checked - uid: Terminal.CheckBox.MouseEvent* parent: Terminal.CheckBox isExternal: false name: MouseEvent nameWithType: CheckBox.MouseEvent fullName: CheckBox.MouseEvent - uid: Terminal.CheckBox.PositionCursor* parent: Terminal.CheckBox isExternal: false name: PositionCursor nameWithType: CheckBox.PositionCursor fullName: CheckBox.PositionCursor - uid: Terminal.CheckBox.ProcessKey* parent: Terminal.CheckBox isExternal: false name: ProcessKey nameWithType: CheckBox.ProcessKey fullName: CheckBox.ProcessKey - uid: Terminal.CheckBox.Redraw* parent: Terminal.CheckBox isExternal: false name: Redraw nameWithType: CheckBox.Redraw fullName: CheckBox.Redraw - uid: Terminal.CheckBox.Text* parent: Terminal.CheckBox isExternal: false name: Text nameWithType: CheckBox.Text fullName: CheckBox.Text - uid: Terminal.Responder.CanFocus parent: Terminal.Responder isExternal: false name: CanFocus nameWithType: Responder.CanFocus fullName: Responder.CanFocus - uid: Terminal.View.HasFocus parent: Terminal.View isExternal: false name: HasFocus nameWithType: View.HasFocus fullName: View.HasFocus - uid: Terminal.View.ProcessColdKey(Terminal.KeyEvent) parent: Terminal.View isExternal: false name: ProcessColdKey(KeyEvent) nameWithType: View.ProcessColdKey(KeyEvent) fullName: View.ProcessColdKey(KeyEvent) - uid: Terminal.View.ProcessHotKey(Terminal.KeyEvent) parent: Terminal.View isExternal: false name: ProcessHotKey(KeyEvent) nameWithType: View.ProcessHotKey(KeyEvent) fullName: View.ProcessHotKey(KeyEvent) - uid: Terminal.View.Add(Terminal.View) parent: Terminal.View isExternal: false name: Add(View) nameWithType: View.Add(View) fullName: View.Add(View) - uid: Terminal.View.Add(Terminal.View[]) parent: Terminal.View isExternal: false name: Add(View[]) nameWithType: View.Add(View[]) fullName: View.Add(View[]) - uid: Terminal.View.AddCh(System.Int32,System.Int32,System.Int32) parent: Terminal.View isExternal: false name: AddCh(Int32, Int32, Int32) nameWithType: View.AddCh(Int32, Int32, Int32) fullName: View.AddCh(Int32, Int32, Int32) - uid: Terminal.View.Bounds parent: Terminal.View isExternal: false name: Bounds nameWithType: View.Bounds fullName: View.Bounds - uid: Terminal.View.ChildNeedsDisplay parent: Terminal.View isExternal: false name: ChildNeedsDisplay() nameWithType: View.ChildNeedsDisplay() fullName: View.ChildNeedsDisplay() - uid: Terminal.View.Clear parent: Terminal.View isExternal: false name: Clear() nameWithType: View.Clear() fullName: View.Clear() - uid: Terminal.View.ClearNeedsDisplay parent: Terminal.View isExternal: false name: ClearNeedsDisplay() nameWithType: View.ClearNeedsDisplay() fullName: View.ClearNeedsDisplay() - uid: Terminal.View.ColorScheme parent: Terminal.View isExternal: false name: ColorScheme nameWithType: View.ColorScheme fullName: View.ColorScheme - uid: Terminal.View.DrawFrame(Terminal.Rect,System.Boolean) parent: Terminal.View isExternal: false name: DrawFrame(Rect, Boolean) nameWithType: View.DrawFrame(Rect, Boolean) fullName: View.DrawFrame(Rect, Boolean) - uid: Terminal.View.DrawHotString(System.String,System.Boolean,Terminal.ColorScheme) parent: Terminal.View isExternal: false name: DrawHotString(String, Boolean, ColorScheme) nameWithType: View.DrawHotString(String, Boolean, ColorScheme) fullName: View.DrawHotString(String, Boolean, ColorScheme) - uid: Terminal.View.DrawHotString(System.String,Terminal.Attribute,Terminal.Attribute) parent: Terminal.View isExternal: false name: DrawHotString(String, Attribute, Attribute) nameWithType: View.DrawHotString(String, Attribute, Attribute) fullName: View.DrawHotString(String, Attribute, Attribute) - uid: Terminal.View.Driver parent: Terminal.View isExternal: false name: Driver nameWithType: View.Driver fullName: View.Driver - uid: Terminal.View.EnsureFocus parent: Terminal.View isExternal: false name: EnsureFocus() nameWithType: View.EnsureFocus() fullName: View.EnsureFocus() - uid: Terminal.View.Focused parent: Terminal.View isExternal: false name: Focused nameWithType: View.Focused fullName: View.Focused - uid: Terminal.View.FocusFirst parent: Terminal.View isExternal: false name: FocusFirst() nameWithType: View.FocusFirst() fullName: View.FocusFirst() - uid: Terminal.View.FocusLast parent: Terminal.View isExternal: false name: FocusLast() nameWithType: View.FocusLast() fullName: View.FocusLast() - uid: Terminal.View.FocusNext parent: Terminal.View isExternal: false name: FocusNext() nameWithType: View.FocusNext() fullName: View.FocusNext() - uid: Terminal.View.FocusPrev parent: Terminal.View isExternal: false name: FocusPrev() nameWithType: View.FocusPrev() fullName: View.FocusPrev() - uid: Terminal.View.Frame parent: Terminal.View isExternal: false name: Frame nameWithType: View.Frame fullName: View.Frame - uid: Terminal.View.GetEnumerator parent: Terminal.View isExternal: false name: GetEnumerator() nameWithType: View.GetEnumerator() fullName: View.GetEnumerator() - uid: Terminal.View.Id parent: Terminal.View isExternal: false name: Id nameWithType: View.Id fullName: View.Id - uid: Terminal.View.LayoutSubviews parent: Terminal.View isExternal: false name: LayoutSubviews() nameWithType: View.LayoutSubviews() fullName: View.LayoutSubviews() - uid: Terminal.View.MostFocused parent: Terminal.View isExternal: false name: MostFocused nameWithType: View.MostFocused fullName: View.MostFocused - uid: Terminal.View.Move(System.Int32,System.Int32) parent: Terminal.View isExternal: false name: Move(Int32, Int32) nameWithType: View.Move(Int32, Int32) fullName: View.Move(Int32, Int32) - uid: Terminal.View.Remove(Terminal.View) parent: Terminal.View isExternal: false name: Remove(View) nameWithType: View.Remove(View) fullName: View.Remove(View) - uid: Terminal.View.RemoveAll parent: Terminal.View isExternal: false name: RemoveAll() nameWithType: View.RemoveAll() fullName: View.RemoveAll() - uid: Terminal.View.ScreenToView(System.Int32,System.Int32) parent: Terminal.View isExternal: false name: ScreenToView(Int32, Int32) nameWithType: View.ScreenToView(Int32, Int32) fullName: View.ScreenToView(Int32, Int32) - uid: Terminal.View.SetFocus(Terminal.View) parent: Terminal.View isExternal: false name: SetFocus(View) nameWithType: View.SetFocus(View) fullName: View.SetFocus(View) - uid: Terminal.View.SetNeedsDisplay parent: Terminal.View isExternal: false name: SetNeedsDisplay() nameWithType: View.SetNeedsDisplay() fullName: View.SetNeedsDisplay() - uid: Terminal.View.SetNeedsDisplay(Terminal.Rect) parent: Terminal.View isExternal: false name: SetNeedsDisplay(Rect) nameWithType: View.SetNeedsDisplay(Rect) fullName: View.SetNeedsDisplay(Rect) - uid: Terminal.View.Subviews parent: Terminal.View isExternal: false name: Subviews nameWithType: View.Subviews fullName: View.Subviews - uid: Terminal.View.SuperView parent: Terminal.View isExternal: false name: SuperView nameWithType: View.SuperView fullName: View.SuperView - uid: Terminal.View.ToString parent: Terminal.View isExternal: false name: ToString() nameWithType: View.ToString() fullName: View.ToString() - uid: Terminal.View.WantMousePositionReports parent: Terminal.View isExternal: false name: WantMousePositionReports nameWithType: View.WantMousePositionReports fullName: View.WantMousePositionReports