Size.Height

From Xojo Documentation

Property (As Size )
aSize.Height = newSizeValue
or
SizeValue = aSize.Height

New in 2019r2

Supported for all project types and targets.

The height of the object, in pixels.

Sample Code

This example increases the height and width of the Size object.

Var rectSize As New Size(100, 75)
rectSize.Height = 150
rectSize.Width = 200