SizeHelper.FromDimensions(Single, Single) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new Size based on width and height element values. C# 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.