Occurs when the mouse leaves the visible part of the control.
Namespace: SpiceLogic.WinHTMLEditor
Assembly: WinHTMLEditorControl (in WinHTMLEditorControl.dll)
Syntax
| Visual Basic (Declaration) |
|---|
| Public Event MouseLeave As EventHandler(Of EditorMouseEventArgs) |
| C# |
|---|
| public event EventHandler<EditorMouseEventArgs> MouseLeave |
| C++ |
|---|
| public: virtual event EventHandler<EditorMouseEventArgs> MouseLeave { void add(EventHandler<EditorMouseEventArgs> value) sealed ; void remove(EventHandler<EditorMouseEventArgs> value) sealed ; } |
| J# |
|---|
| /** event */ public final void add_MouseLeave(EventHandler<EditorMouseEventArgs> value); /** event */ public final void remove_MouseLeave(EventHandler<EditorMouseEventArgs> value); |
| JScript |
|---|
Event Data
The event handler receives an argument of type EditorMouseEventArgs containing data related to this event. The following EditorMouseEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| Cancel | If set to true, cancel the Mouse event. |
| MousePositions | Gets the position of the mouse position in the Form. |
| OffsetMousePosition | Gets the relative position of the mouse cursor. |