Table of Contents
- Getting Started
- EO.Pdf
- EO.Web
- EO.WebBrowser
- EO.Wpf
- Common Topics
- Reference
- .NET API Reference
- EO.Base
- EO.Base.UI
- EO.Base.UI
- Classes
- Enumerations
- Delegates
- EO.Extensions
- EO.Pdf
- EO.Pdf.Acm
- EO.Pdf.Contents
- EO.Pdf.Drawing
- EO.Pdf.Mvc
- EO.Web
- EO.WebBrowser
- EO.WebBrowser.DOM
- EO.WebEngine
- EO.WinForm
- EO.Wpf
- EO.Wpf.Gauge
- EO.Wpf.Gauge.Shapes
- EO.Wpf.Primitives
- EO.Wpf.Themes.Aero
- EO.Wpf.Themes.Classic
- EO.Wpf.Themes.Luna
- EO.Wpf.Themes.Metro
- EO.Wpf.Themes.Royale
- JavaScript API Reference
- .NET API Reference
MouseButtons Enumeration |
Specifies constants that define which mouse button was pressed.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace:
EO.Base.UI
Assembly: EO.Base (in EO.Base.dll)
Syntax
public enum MouseButtons
Members
Member Name | Description | Value |
---|---|---|
None | No mouse button was pressed. | 0 |
Left | The left mouse button was pressed. | 1048576 |
Middle | The middle mouse button was pressed. | 4194304 |
Right | The right mouse button was pressed. | 2097152 |
XButton1 | The first XButton (XBUTTON1) on Microsoft IntelliMouse Explorer was pressed. | 8388608 |
XButton2 | The second XButton (XBUTTON2) on Microsoft IntelliMouse Explorer was pressed. | 16777216 |
See Also