view_get_hview

Returns the height of the current viewport.

Example, called from article1_update.gml:

// destroys articles out of the lower view side:
if (y > view_get_yview() + view_get_hview()) {
instance_destroy();
}