Table of Contents

Class MouseClickEventArgs

Namespace
VisioForge.Core.Types.Events
Assembly
VisioForge.Core.dll

Event arguments for mouse click events providing screen coordinates.

public class MouseClickEventArgs : EventArgs

Inheritance

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

x int

The screen X coordinate.

y int

The screen Y coordinate.

isLeftButton bool

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

bool

X

Gets the screen X coordinate of the click.

public int X { get; }

Property Value

int

Y

Gets the screen Y coordinate of the click.

public int Y { get; }

Property Value

int