SizeHelper.FromDimensions(Single, Single) Method

Definition

Creates a new Size based on width and height element values. C# and Microsoft Visual Basic code should use the Size(Double,Double) constructor instead.

public:
 static Size FromDimensions(float width, float height);
 static Size FromDimensions(float const& width, float const& height);
public static Size FromDimensions(float width, float height);
function fromDimensions(width, height)
Public Shared Function FromDimensions (width As Single, height As Single) As Size

Parameters

width
Single

float

The initial Width.

height
Single

float

The initial Height.

Returns

The created Size.

Applies to