The unique identifier of the contact for a touch, mouse or pen.
This property is read-only.
Syntax
| JavaScript |
|---|
lID = object.pointerId |
Property values
Type: Integer
The unique identifier of the contact for a touch, mouse or pen.
Remarks
This remains the same throughout the lifetime of the pointer. The pointerID is used to associate an MSGesture object with a contact on an element so the element can receive MSGestureEvents.
Examples
// Adds a pointer to the MSGesture object for the red square
function redListener(evt)
{
if (evt.type == "MSPointerDown")
{
redGesture.addPointer(evt.pointerId);
return;
}
printEvent(evt);
}
See also
Build date: 11/29/2012