pageX property

Gets the x-coordinate of the mouse pointer, relative to the upper-left corner of the page.

 

Syntax

HRESULT value = object.get_pageX(* p);

Property values

Type: long

The x-coordinate.

Standards information

Remarks

The IDOMMouseEvent::pageX property is equivalent to the IDOMMouseEvent::clientX value plus the IHTMLElement2::scrollLeft value of the document, as the following code example shows.

var pageX = event.clientX + document.documentElement.scrollLeft; 

See also

Reference

IDOMMouseEvent::clientX

IDOMMouseEvent::offsetX

IDOMMouseEvent::screenX

IDOMMouseEvent::x

IDOMMouseEvent::pageY

IDOMMouseEvent::offsetY

IDOMMouseEvent::screenY

IDOMMouseEvent::y