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<EditorMouseEventArgsvalue) sealed ;
    void remove(EventHandler<EditorMouseEventArgsvalue) sealed ;
}
J#
/** event */
public final void add_MouseLeave(EventHandler<EditorMouseEventArgsvalue);

/** event */
public final void remove_MouseLeave(EventHandler<EditorMouseEventArgsvalue);
JScript
JScript suports the use of events, but not the declaration of new ones.

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.

PropertyDescription
CancelIf set to true, cancel the Mouse event.
MousePositionsGets the position of the mouse position in the Form.
OffsetMousePositionGets the relative position of the mouse cursor.

See Also