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


ElementMouseWheelEvent

Event class used to represent mouse wheel events of type "wheel".

Inheritance:     ElementMouseWheelEvent ➞ ElementMouseEventElementEventDispatcherEvent ➞ Object

Public Functions
Show Inherited
Function Defined By
ElementMouseWheelEvent(x, y, deltaX, deltaY) [Constructor] ElementMouseWheelEvent
Creates new ElementMouseWheelEvent instance.
  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.
  deltaX     :    int
The change of the X position of the the mouse wheel. (Currently -1, 0, or +1)
  deltaY     :    int
The change of the Y position of the the mouse wheel. (Currently -1, 0, or +1)
 
getDeltaX() ElementMouseWheelEvent
Gets the change of the X position of the mouse wheel. The system normalizes this
across browsers to values -1, 0, or +1.
  returns     :    int
The change of the X position of the mouse wheel.
 
getDeltaY() ElementMouseWheelEvent
Gets the change of the Y position of the mouse wheel. The system normalizes this
across browsers to values -1, 0, or +1.
  returns     :    int
The change of the Y position of the mouse wheel.
 


Internal Functions
Show Inherited