Classes
AddedRemovedEvent
AlertElement
AnchorContainerElement
ArrowShape
ButtonElement
CanvasElement
CanvasManager
CheckboxElement
CheckboxSkinElement
CollectionChangedEvent
CollectionSort
ColorPickerButtonElement
ColorPickerElement
ContainerBaseElement
CursorDefinition
DataGridColumnDefinition
DataGridDataRenderer
DataGridElement
DataGridHeaderColumnDividerSkinElement
DataGridHeaderElement
DataGridHeaderItemRenderer
DataGridItemData
DataGridItemRendererBase
DataGridLabelItemRenderer
DataListData
DataListElement
DataRendererBaseElement
DataRendererLabelElement
DatePickerButtonElement
DatePickerElement
DispatcherEvent
DrawMetrics
DropdownArrowButtonSkinElement
DropdownBaseElement
DropdownElement
ElementEvent
ElementGridItemClickEvent
ElementKeyboardEvent
ElementListItemClickEvent
ElementMouseEvent
ElementMouseWheelEvent
EllipseShape
EventDispatcher
FillBase
GridContainerElement
GridContainerRowColumnDefinition
ImageElement
IpInputElement
LabelElement
LinearGradientFill
ListCollection
ListContainerElement
ProgressElement
RadioButtonElement
RadioButtonSkinElement
RoundedRectangleShape
ScrollBarElement
ScrollButtonSkinElement
ShapeBase
SkinnableElement
SolidFill
StyleableBase
StyleChangedEvent
StyleData
StyleDefinition
StyleProxy
TextAreaElement
TextElement
TextFieldElement
TextInputElement
TimeInputElement
ToggleButtonElement
ToggleButtonGroup
Tween
ViewportElement


ElementMouseEvent

Event class used to represent mouse events of type "mousedown", "mouseup" or "click".
Every "mousedown" event is always paired with a "mouseup" event. Note that the mouse is
not necessarily still over the same object when "mouseup" is dispatched. The user may have
pressed and then moved the mouse before releasing. A "click" event however, is only dispatched
if the mouse is still over the "mousedown" object when the mouse is released.

Inheritance:     ElementMouseEvent ➞ ElementEventDispatcherEvent ➞ Object

Public Functions
Show Inherited
Function Defined By
ElementMouseEvent(type, x, y) [Constructor] ElementMouseEvent
Creates new ElementMouseEvent instance.
  type     :    String
String representing the event type ("mousedown", "mouseup", or "click")
  x     :    int
The X coordinate of the mouse relative to the object dispatching the mouse event.
  y     :    int
The Y coordinate of the mouse relative to the object dispatching the mouse event.
 
getX() ElementMouseEvent
Gets the X coordinate of the mouse relative to the object dispatching the mouse event.
  returns     :    int
The X coordinate of the mouse relative to the object dispatching the mouse event.
 
getY() ElementMouseEvent
Gets the Y coordinate of the mouse relative to the object dispatching the mouse event.
  returns     :    int
The Y coordinate of the mouse relative to the object dispatching the mouse event.
 


Internal Functions
Show Inherited