SizeF.Multiply Operator
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.
Overloads
Multiply(SizeF, Single) |
Multiplies the specified SizeF by the specified single-precision floating-point number. |
Multiply(Single, SizeF) |
Multiplies the specified single-precision floating-point number by the specified SizeF. |
Multiply(SizeF, Single)
- Source:
- SizeF.cs
- Source:
- SizeF.cs
- Source:
- SizeF.cs
Multiplies the specified SizeF by the specified single-precision floating-point number.
public:
static System::Drawing::SizeF operator *(System::Drawing::SizeF left, float right);
public static System.Drawing.SizeF operator * (System.Drawing.SizeF left, float right);
static member ( * ) : System.Drawing.SizeF * single -> System.Drawing.SizeF
Public Shared Operator * (left As SizeF, right As Single) As SizeF
Parameters
- left
- SizeF
The multiplicand.
- right
- Single
The multiplier.
Returns
The result of multiplying left
's width and height by right
.
Applies to
Multiply(Single, SizeF)
- Source:
- SizeF.cs
- Source:
- SizeF.cs
- Source:
- SizeF.cs
Multiplies the specified single-precision floating-point number by the specified SizeF.
public:
static System::Drawing::SizeF operator *(float left, System::Drawing::SizeF right);
public static System.Drawing.SizeF operator * (float left, System.Drawing.SizeF right);
static member ( * ) : single * System.Drawing.SizeF -> System.Drawing.SizeF
Public Shared Operator * (left As Single, right As SizeF) As SizeF
Parameters
- left
- Single
The multiplier.
- right
- SizeF
The multiplicand.
Returns
The result of multiplying right
's width and height by left
.