Realbasic.Size
From Xojo Documentation
This item was deprecated in version 2019r2. Please use Size as a replacement. |
Class (inherits from Object)
New in 2011r2
An object used to represent the dimensions of an object.
Properties | |||
|
Methods | |
|
Constructors | ||
|
Sample Code
This example reads the Area property.
Dim rectSize As New Realbasic.Size
rectSize.Height = 150
rectSize.Width = 200
MsgBox(Str(rectSize.Area))
rectSize.Height = 150
rectSize.Width = 200
MsgBox(Str(rectSize.Area))
See Also
Canvas control; Window, ContainerControl, Realbasic.Point, Realbasic.Rect classes.