clientY property
Gets the y-coordinate of the mouse pointer, relative to the upper-left corner of the viewport (that is, the application's client area).
Syntax
HRESULT value = object.get_clientY(* p);
Property values
Type: long
The y-coordinate.
Standards information
- Document Object Model (DOM) Level 3 Events Specification, Section 5.2.3
Remarks
Client coordinates do not reflect the scroll offset of the page. To get the mouse pointer's coordinates relative to the upper-left corner of the document, use the IDOMMouseEvent::pageX and IDOMMouseEvent::pageY properties.
See also
Reference