Class that represents a size (with width and height).
constructor(width?: number, height?: number): Size
Initializes a new instance of the Size class.
Width of the new Size.
Height of the new Size.
Gets or sets the height of this Size.
Gets or sets the width of this Size.
clone(): Size
Creates a copy of this Size.
equals(sz: Size): boolean
Returns true if a Size has the same dimensions as this Size.
Size to compare to this Size.
Copyright © GrapeCity, inc. All rights reserved.
Class that represents a size (with width and height).