InterviewSolution
Saved Bookmarks
| 1. |
Which of the following are not the properties of a canvas object?(a) fillStyle(b) strokeStyle(c) lineWidth(d) lineSizeI got this question in final exam.Enquiry is from Graphics topic in chapter Graphics and Rendering of JavaScript |
|
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. |
|