System::Drawing::SizeF::SizeF constructor

SizeF::SizeF() constructor

Constructs a new SizeF object and initializes its width and height values with 0.

System::Drawing::SizeF::SizeF()

See Also

SizeF::SizeF(const PointF&) constructor

Constructs a new SizeF object and initializes its width and height values with the values of X and Y coordinates of the specifide point correspondingly.

System::Drawing::SizeF::SizeF(const PointF &point)
ParameterTypeDescription
pointconst PointF&A Point object whose X and Y coordinates are used to initialize width and height value of the SizeF object being created

See Also

SizeF::SizeF(float, float) constructor

Constructs a new SizeF object and initializes it with the specified value.

System::Drawing::SizeF::SizeF(float width, float height)
ParameterTypeDescription
widthfloatThe value to width
heightfloatThe value of height

See Also