Enum MouseEvent
Specifies mouse event categories.
Namespace: OpenCV.Net
Assembly: OpenCV.Net.dll
Syntax
public enum MouseEvent : int
Fields
| Name | Description |
|---|---|
| LButtonDblClk | Specifies that the event was triggered by double cliking with the left mouse button. |
| LButtonDown | Specifies that the event was triggered by depressing the left mouse button. |
| LButtonUp | Specifies that the event was triggered by releasing the left mouse button. |
| MButtonDblClk | Specifies that the event was triggered by double cliking with the middle mouse button. |
| MButtonDown | Specifies that the event was triggered by depressing the middle mouse button. |
| MButtonUp | Specifies that the event was triggered by releasing the middle mouse button. |
| MouseMove | Specifies that the event was triggered by mouse movement. |
| RButtonDblClk | Specifies that the event was triggered by double cliking with the right mouse button. |
| RButtonDown | Specifies that the event was triggered by depressing the right mouse button. |
| RButtonUp | Specifies that the event was triggered by releasing the right mouse button. |