OffscreenCanvas.height
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The height
property returns and sets the height of an
OffscreenCanvas
object.
Syntax
var pxl = offscreen.height;
offscreen.height = pxl;
Examples
Creating a new offscreen canvas and returning or setting the height of the offscreen canvas:
var offscreen = new OffscreenCanvas(256, 256);
offscreen.height; // 256
offscreen.height = 512;
Specifications
Specification |
---|
HTML Standard # dom-offscreencanvas-height-dev |
Browser compatibility
BCD tables only load in the browser
See also
OffscreenCanvas
, the interface this property belongs to.