beginPath - method of the CanvasCtx object
Description:
Sets the beginning of the drawing path, or resets the current path.
Syntax:
Object beginPath()
Example:
The
ctx variable represents the drawing canvas (
CanvasCtx). The setup is done on the "
Draw" tab at the beginning of the script of drawing event
onDraw as follows:
var ctx =
pEvent.
GetCtx(1);
JavaScriptSelect and copy to clipboard
ctx.beginPath();
ctx.lineWidth = 5;
ctx.strokeStyle = "blue";
ctx.rect(50, 50, 150, 80);
ctx.stroke();