availHeight property

int get availHeight

The read-only Screen interface's availHeight property returns the height, in CSS pixels, of the space available for Web content on the screen. Since Screen is exposed on the Window interface's Window.screen property, you access availHeight using window.screen.availHeight.

You can similarly use Screen.availWidth to get the number of pixels which are horizontally available to the browser for its use.

Implementation

external int get availHeight;