ApplicationEvents4_WindowBeforeDoubleClickEventHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A Delegate type used to add an event handler for the WindowBeforeDoubleClick event. The WindowBeforeDoubleClick event occurs when the editing area of a document window is double-clicked, before the default double-click action.
public delegate void ApplicationEvents4_WindowBeforeDoubleClickEventHandler(Selection ^ Sel, [Runtime::InteropServices::Out] bool % Cancel);
[System.Runtime.InteropServices.ComVisible(false)]
public delegate void ApplicationEvents4_WindowBeforeDoubleClickEventHandler(Selection Sel, out bool Cancel);
type ApplicationEvents4_WindowBeforeDoubleClickEventHandler = delegate of Selection * bool -> unit
Public Delegate Sub ApplicationEvents4_WindowBeforeDoubleClickEventHandler(Sel As Selection, ByRef Cancel As Boolean)
Parameters
- Sel
- Selection
The current selection.
- Cancel
- Boolean
False when the event occurs. If the event procedure sets this argument to True, the default double-click action does not occur when the procedure is finished.
- Attributes