Occurs when the mouse pointer is moved over the control.


Namespace: SpiceLogic.WinHTMLEditor
Assembly: WinHTMLEditorControl (in WinHTMLEditorControl.dll)

Syntax

Visual Basic (Declaration)
Public Event MouseMove As EventHandler(Of EditorMouseEventArgs
C#
public event EventHandler<EditorMouseEventArgs> MouseMove
C++
public:
 virtual event EventHandler<EditorMouseEventArgs> MouseMove {
    void add(EventHandler<EditorMouseEventArgsvalue) sealed ;
    void remove(EventHandler<EditorMouseEventArgsvalue) sealed ;
}
J#
/** event */
public final void add_MouseMove(EventHandler<EditorMouseEventArgsvalue);

/** event */
public final void remove_MouseMove(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