width property

int get width

The HTMLCanvasElement.width property is a positive integer reflecting the width HTML attribute of the canvas element interpreted in CSS pixels. When the attribute is not specified, or if it is set to an invalid value, like a negative, the default value of 300 is used.

When the width property is set the drawing buffer is always reset to blank — this is true for all context types, and even when the width is set to the same value. If you need to restore the previous content, you can save it via CanvasRenderingContext2D.getImageData and restore it via CanvasRenderingContext2D.putImageData.

This is one of the two properties, the other being HTMLCanvasElement.height, that controls the size of the canvas.

Implementation

external int get width;
set width (int value)

Implementation

external set width(int value);