keeweb/helper/win32/src/KeeWebHelper/WindowsInput/MouseButton.cs

23 lines
424 B
C#
Raw Normal View History

2016-08-08 19:55:30 +02:00
namespace WindowsInput
{
/// <summary>
/// The mouse button
/// </summary>
public enum MouseButton
{
/// <summary>
/// Left mouse button
/// </summary>
LeftButton,
/// <summary>
/// Middle mouse button
/// </summary>
MiddleButton,
/// <summary>
/// Right moust button
/// </summary>
RightButton,
}
}