Class View.MouseEventArgs
Specifies the event arguments for MouseEvent
Inheritance
System.Object
View.MouseEventArgs
Namespace: Terminal.Gui
Assembly: Terminal.Gui.dll
Syntax
public class MouseEventArgs : EventArgs
Constructors
MouseEventArgs(MouseEvent)
Constructs.
Declaration
public MouseEventArgs(MouseEvent me)
Parameters
Type | Name | Description |
---|---|---|
MouseEvent | me |
Properties
Handled
Indicates if the current mouse event has already been processed and the driver should stop notifying any other event subscriber.
Its important to set this value to true specially when updating any View's layout from inside the subscriber method.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
MouseEvent
The MouseEvent for the event.
Declaration
public MouseEvent MouseEvent { get; set; }
Property Value
Type | Description |
---|---|
MouseEvent |