InterviewSolution
Saved Bookmarks
| 1. |
Which of the following are not the properties of a canvas object?(a) fillStyle(b) strokeStyle(c) lineWidth(d) lineSize |
|
Answer» Right choice is (d) lineSize The explanation: The fillStyle property sets or returns the color, gradient, or pattern used to fill the drawing. The strokeStyle property sets or returns the color, gradient, or pattern used for strokes. There is no property called lineSize associated with the canvas object. |
|