W3Schools.com

HTML5 canvas isPointInPath Method

HTML5 track Tag Reference HTML5 canvas reference

Example

Draw a rectangle if the point (20,50) is in path:

Yor browser does not support the canvas tag.

JavaScript:

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.rect(20,20,150,100);
if (ctx.isPointInPath(20,50))
   {
   ctx.stroke();
   };

Try it yourself »

Definition and Usage

The isPointInPath method returns a Boolean (true/false) value whether or not the specified point is in the current path.

JavaScript syntax: context.isPointInPath(x,y);


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The isPointInPath method is supported in all major browsers.


Parameter Values

Parameter Values Description
x x-coordinate The x-coordinate of the point
y y-coordinate The y-coordinate of the point


HTML5 track Tag Reference HTML5 canvas reference


WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$3.98 Unlimited Hosting
Premium Website Design
WEB BUILDING
Download XML Editor
FREE Website BUILDER
Best Website Templates Top CSS Templates
CREATE HTML Websites
EASY WEBSITE BUILDER
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE