Constructs a SizeF given a width and a height.
Syntax

[C#]

SizeF(double width, double height);
SizeF(PointF pt);
SizeF(SizeF sz);

[Visual Basic]

Sub New(width As Double, height As Double)
Sub New(pt As PointF)
Sub New(sz As SizeF)
Params
Name Description
width The horizontal component.
height The vertical component.
pt The point value.
sz The size value.
Notes

None.

Example

None.