Version

EmbeddableMouseDownEventArgs Constructor(EmbeddableUIElementBase,Boolean,MouseEventArgs,Boolean,Boolean)

Creates a new instance of the EmbeddableMouseDownEventArgs class
Syntax
'Declaration
 
Public Function New( _
   ByVal embeddableElement As EmbeddableUIElementBase, _
   ByVal isButton As Boolean, _
   ByVal mouseArgs As MouseEventArgs, _
   ByVal eatMessage As Boolean, _
   ByVal notifyParentElement As Boolean _
)
public EmbeddableMouseDownEventArgs( 
   EmbeddableUIElementBase embeddableElement,
   bool isButton,
   MouseEventArgs mouseArgs,
   bool eatMessage,
   bool notifyParentElement
)

Parameters

embeddableElement
The EmbeddableUIElementBase-derived element raising the MouseDOwn event
isButton
If true, listeners should react as if the element that was clicked is a button.
mouseArgs
The underlying mouse event arguments.
eatMessage
Determines whether default processing will be bypassed; return true to bypass default processing.
notifyParentElement
Determines whether the parent element of the specified embeddableElement will be notified of the MouseDown. Applicable only when eatMessage is false.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also