Version

MouseDown Event

Occurs when the user clicks on an embeddable element.
Syntax
'Declaration
 
Public Event MouseDown As EmbeddableMouseDownEventHandler
public event EmbeddableMouseDownEventHandler MouseDown
Event Data

The event handler receives an argument of type EmbeddableMouseDownEventArgs containing data related to this event. The following EmbeddableMouseDownEventArgs properties provide information specific to this event.

PropertyDescription
EatMessage Indicates whether to eat the message or not. When set to true, the EmbeddableUIElementBase-derived element will return true from its OnMouseDown method, causing default mouse processing to be bypassed for ancestor elements.
ElementType (Inherited from Infragistics.Win.EmbeddableClickEventArgs)Specifies what type of element was clicked.
EmbeddableElement (Inherited from Infragistics.Win.EmbeddableClickEventArgs)The EmbeddableUIElementBase derived object.
IsButton (Inherited from Infragistics.Win.EmbeddableClickEventArgs)Returns true if the element clicked on is a button.
MouseArgs (Inherited from Infragistics.Win.EmbeddableMouseEventArgs)The mouse arguments.
NotifyParentElement Determines whether the parent element will receive a notification when the EmbeddableUIElementBase-derived element's OnMouseDown method is called.
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