Occurs when the mouse remains stationary inside of the control for an amount of time.


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

Syntax

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

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