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.
Equivalent WinUI method: Microsoft.UI.Xaml.SizeHelper.FromDimensions.
public:
static Size FromDimensions(float width, float height);
static Size FromDimensions(float width, float 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
The initial Width.
- height
- Single
The initial Height.
Returns
The created Size.