mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-27 00:07:58 +01:00
570 lines
16 KiB
YAML
570 lines
16 KiB
YAML
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: Terminal.MenuBar
|
|
id: MenuBar
|
|
children:
|
|
- Terminal.MenuBar.#ctor(Terminal.MenuBarItem[])
|
|
- Terminal.MenuBar.Menus
|
|
- Terminal.MenuBar.MouseEvent(Terminal.MouseEvent)
|
|
- Terminal.MenuBar.PositionCursor
|
|
- Terminal.MenuBar.ProcessHotKey(Terminal.KeyEvent)
|
|
- Terminal.MenuBar.ProcessKey(Terminal.KeyEvent)
|
|
- Terminal.MenuBar.Redraw(Terminal.Rect)
|
|
langs:
|
|
- csharp
|
|
name: MenuBar
|
|
nameWithType: MenuBar
|
|
fullName: Terminal.MenuBar
|
|
type: Class
|
|
assemblies:
|
|
- Terminal
|
|
namespace: Terminal
|
|
summary: A menu bar for your application.
|
|
syntax:
|
|
content: 'public class MenuBar : 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.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.MenuBar.#ctor(Terminal.MenuBarItem[])
|
|
id: '#ctor(Terminal.MenuBarItem[])'
|
|
parent: Terminal.MenuBar
|
|
langs:
|
|
- csharp
|
|
name: MenuBar(MenuBarItem[])
|
|
nameWithType: MenuBar.MenuBar(MenuBarItem[])
|
|
fullName: MenuBar.MenuBar(MenuBarItem[])
|
|
type: Constructor
|
|
assemblies:
|
|
- Terminal
|
|
namespace: Terminal
|
|
summary: Initializes a new instance of the <xref href="Terminal.MenuBar"></xref> class with the specified set of toplevel menu items.
|
|
syntax:
|
|
content: public MenuBar (Terminal.MenuBarItem[] menus);
|
|
parameters:
|
|
- id: menus
|
|
type: Terminal.MenuBarItem[]
|
|
description: Menus.
|
|
overload: Terminal.MenuBar.#ctor*
|
|
exceptions: []
|
|
- uid: Terminal.MenuBar.Menus
|
|
id: Menus
|
|
parent: Terminal.MenuBar
|
|
langs:
|
|
- csharp
|
|
name: Menus
|
|
nameWithType: MenuBar.Menus
|
|
fullName: MenuBar.Menus
|
|
type: Property
|
|
assemblies:
|
|
- Terminal
|
|
namespace: Terminal
|
|
summary: The menus that were defined when the menubar was created. This can be updated if the menu is not currently visible.
|
|
syntax:
|
|
content: public Terminal.MenuBarItem[] Menus { get; set; }
|
|
return:
|
|
type: Terminal.MenuBarItem[]
|
|
description: The menu array.
|
|
overload: Terminal.MenuBar.Menus*
|
|
exceptions: []
|
|
- uid: Terminal.MenuBar.MouseEvent(Terminal.MouseEvent)
|
|
id: MouseEvent(Terminal.MouseEvent)
|
|
parent: Terminal.MenuBar
|
|
langs:
|
|
- csharp
|
|
name: MouseEvent(MouseEvent)
|
|
nameWithType: MenuBar.MouseEvent(MouseEvent)
|
|
fullName: MenuBar.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.MenuBar.MouseEvent*
|
|
exceptions: []
|
|
- uid: Terminal.MenuBar.PositionCursor
|
|
id: PositionCursor
|
|
parent: Terminal.MenuBar
|
|
langs:
|
|
- csharp
|
|
name: PositionCursor()
|
|
nameWithType: MenuBar.PositionCursor()
|
|
fullName: MenuBar.PositionCursor()
|
|
type: Method
|
|
assemblies:
|
|
- Terminal
|
|
namespace: Terminal
|
|
syntax:
|
|
content: public override void PositionCursor ();
|
|
parameters: []
|
|
overload: Terminal.MenuBar.PositionCursor*
|
|
exceptions: []
|
|
- uid: Terminal.MenuBar.ProcessHotKey(Terminal.KeyEvent)
|
|
id: ProcessHotKey(Terminal.KeyEvent)
|
|
parent: Terminal.MenuBar
|
|
langs:
|
|
- csharp
|
|
name: ProcessHotKey(KeyEvent)
|
|
nameWithType: MenuBar.ProcessHotKey(KeyEvent)
|
|
fullName: MenuBar.ProcessHotKey(KeyEvent)
|
|
type: Method
|
|
assemblies:
|
|
- Terminal
|
|
namespace: Terminal
|
|
syntax:
|
|
content: public override bool ProcessHotKey (Terminal.KeyEvent kb);
|
|
parameters:
|
|
- id: kb
|
|
type: Terminal.KeyEvent
|
|
description: To be added.
|
|
return:
|
|
type: System.Boolean
|
|
description: To be added.
|
|
overload: Terminal.MenuBar.ProcessHotKey*
|
|
exceptions: []
|
|
- uid: Terminal.MenuBar.ProcessKey(Terminal.KeyEvent)
|
|
id: ProcessKey(Terminal.KeyEvent)
|
|
parent: Terminal.MenuBar
|
|
langs:
|
|
- csharp
|
|
name: ProcessKey(KeyEvent)
|
|
nameWithType: MenuBar.ProcessKey(KeyEvent)
|
|
fullName: MenuBar.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.MenuBar.ProcessKey*
|
|
exceptions: []
|
|
- uid: Terminal.MenuBar.Redraw(Terminal.Rect)
|
|
id: Redraw(Terminal.Rect)
|
|
parent: Terminal.MenuBar
|
|
langs:
|
|
- csharp
|
|
name: Redraw(Rect)
|
|
nameWithType: MenuBar.Redraw(Rect)
|
|
fullName: MenuBar.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.MenuBar.Redraw*
|
|
exceptions: []
|
|
references:
|
|
- uid: Terminal.View
|
|
parent: Terminal
|
|
isExternal: false
|
|
name: View
|
|
nameWithType: View
|
|
fullName: Terminal.View
|
|
- uid: Terminal.MenuBar.#ctor(Terminal.MenuBarItem[])
|
|
parent: Terminal.MenuBar
|
|
isExternal: false
|
|
name: MenuBar(MenuBarItem[])
|
|
nameWithType: MenuBar.MenuBar(MenuBarItem[])
|
|
fullName: MenuBar.MenuBar(MenuBarItem[])
|
|
- uid: Terminal.MenuBarItem
|
|
name: MenuBarItem
|
|
nameWithType: MenuBarItem
|
|
fullName: Terminal.MenuBarItem
|
|
- uid: Terminal.MenuBarItem[]
|
|
parent: Terminal
|
|
isExternal: false
|
|
name: MenuBarItem[]
|
|
nameWithType: MenuBarItem[]
|
|
fullName: Terminal.MenuBarItem[]
|
|
spec.csharp:
|
|
- uid: Terminal.MenuBarItem
|
|
name: MenuBarItem
|
|
nameWithType: MenuBarItem
|
|
fullName: Terminal.MenuBarItem
|
|
- name: '[]'
|
|
nameWithType: '[]'
|
|
fullName: '[]'
|
|
- uid: Terminal.MenuBar.Menus
|
|
parent: Terminal.MenuBar
|
|
isExternal: false
|
|
name: Menus
|
|
nameWithType: MenuBar.Menus
|
|
fullName: MenuBar.Menus
|
|
- uid: Terminal.MenuBar.MouseEvent(Terminal.MouseEvent)
|
|
parent: Terminal.MenuBar
|
|
isExternal: false
|
|
name: MouseEvent(MouseEvent)
|
|
nameWithType: MenuBar.MouseEvent(MouseEvent)
|
|
fullName: MenuBar.MouseEvent(MouseEvent)
|
|
- uid: System.Boolean
|
|
parent: System
|
|
isExternal: true
|
|
name: Boolean
|
|
nameWithType: Boolean
|
|
fullName: System.Boolean
|
|
- uid: Terminal.MouseEvent
|
|
parent: Terminal
|
|
isExternal: false
|
|
name: MouseEvent
|
|
nameWithType: MouseEvent
|
|
fullName: Terminal.MouseEvent
|
|
- uid: Terminal.MenuBar.PositionCursor
|
|
parent: Terminal.MenuBar
|
|
isExternal: false
|
|
name: PositionCursor()
|
|
nameWithType: MenuBar.PositionCursor()
|
|
fullName: MenuBar.PositionCursor()
|
|
- uid: Terminal.MenuBar.ProcessHotKey(Terminal.KeyEvent)
|
|
parent: Terminal.MenuBar
|
|
isExternal: false
|
|
name: ProcessHotKey(KeyEvent)
|
|
nameWithType: MenuBar.ProcessHotKey(KeyEvent)
|
|
fullName: MenuBar.ProcessHotKey(KeyEvent)
|
|
- uid: Terminal.KeyEvent
|
|
parent: Terminal
|
|
isExternal: false
|
|
name: KeyEvent
|
|
nameWithType: KeyEvent
|
|
fullName: Terminal.KeyEvent
|
|
- uid: Terminal.MenuBar.ProcessKey(Terminal.KeyEvent)
|
|
parent: Terminal.MenuBar
|
|
isExternal: false
|
|
name: ProcessKey(KeyEvent)
|
|
nameWithType: MenuBar.ProcessKey(KeyEvent)
|
|
fullName: MenuBar.ProcessKey(KeyEvent)
|
|
- uid: Terminal.MenuBar.Redraw(Terminal.Rect)
|
|
parent: Terminal.MenuBar
|
|
isExternal: false
|
|
name: Redraw(Rect)
|
|
nameWithType: MenuBar.Redraw(Rect)
|
|
fullName: MenuBar.Redraw(Rect)
|
|
- uid: Terminal.Rect
|
|
parent: Terminal
|
|
isExternal: false
|
|
name: Rect
|
|
nameWithType: Rect
|
|
fullName: Terminal.Rect
|
|
- uid: Terminal.MenuBar.#ctor*
|
|
parent: Terminal.MenuBar
|
|
isExternal: false
|
|
name: MenuBar
|
|
nameWithType: MenuBar.MenuBar
|
|
fullName: MenuBar.MenuBar
|
|
- uid: Terminal.MenuBar.Menus*
|
|
parent: Terminal.MenuBar
|
|
isExternal: false
|
|
name: Menus
|
|
nameWithType: MenuBar.Menus
|
|
fullName: MenuBar.Menus
|
|
- uid: Terminal.MenuBar.MouseEvent*
|
|
parent: Terminal.MenuBar
|
|
isExternal: false
|
|
name: MouseEvent
|
|
nameWithType: MenuBar.MouseEvent
|
|
fullName: MenuBar.MouseEvent
|
|
- uid: Terminal.MenuBar.PositionCursor*
|
|
parent: Terminal.MenuBar
|
|
isExternal: false
|
|
name: PositionCursor
|
|
nameWithType: MenuBar.PositionCursor
|
|
fullName: MenuBar.PositionCursor
|
|
- uid: Terminal.MenuBar.ProcessHotKey*
|
|
parent: Terminal.MenuBar
|
|
isExternal: false
|
|
name: ProcessHotKey
|
|
nameWithType: MenuBar.ProcessHotKey
|
|
fullName: MenuBar.ProcessHotKey
|
|
- uid: Terminal.MenuBar.ProcessKey*
|
|
parent: Terminal.MenuBar
|
|
isExternal: false
|
|
name: ProcessKey
|
|
nameWithType: MenuBar.ProcessKey
|
|
fullName: MenuBar.ProcessKey
|
|
- uid: Terminal.MenuBar.Redraw*
|
|
parent: Terminal.MenuBar
|
|
isExternal: false
|
|
name: Redraw
|
|
nameWithType: MenuBar.Redraw
|
|
fullName: MenuBar.Redraw
|
|
- 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.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
|