Size(Double, Double) Constructor

Definition

Initializes a new instance of the Size struct and assigns it an initial width and height.

public:
 Size(double width, double height);
public Size (double width, double height);
new Windows.Foundation.Size : double * double -> Windows.Foundation.Size
Public Sub New (width As Double, height As Double)

Parameters

width
Double

The initial width of the instance of Size.

height
Double

The initial height of the instance of Size.

Exceptions

width or height are less than 0.

Remarks

This struct represents the .NET projection of the Windows Runtime (WinRT) Size struct. For more information, see Size in the UWP API reference.

Applies to