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<EditorMouseEventArgs> value) sealed ; void remove(EventHandler<EditorMouseEventArgs> value) sealed ; } |
| J# |
|---|
| /** event */ public final void add_MouseOver(EventHandler<EditorMouseEventArgs> value); /** event */ public final void remove_MouseOver(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. |