Class MouseClickEventArgs
- Namespace
- VisioForge.Core.Types.Events
- Assembly
- VisioForge.Core.dll
Event arguments for mouse click events providing screen coordinates.
public class MouseClickEventArgs : EventArgsInheritance
Inherited Members
Constructors
MouseClickEventArgs(int, int, bool)
Initializes a new instance of the VisioForge.Core.Types.Events.MouseClickEventArgs class.
public MouseClickEventArgs(int x, int y, bool isLeftButton)Parameters
xint-
The screen X coordinate.
yint-
The screen Y coordinate.
isLeftButtonbool-
Whether this was a left button click.
Properties
IsLeftButton
Gets a value indicating whether this was a left button click.
public bool IsLeftButton { get; }Property Value
X
Gets the screen X coordinate of the click.
public int X { get; }Property Value
Y
Gets the screen Y coordinate of the click.
public int Y { get; }