Size.Multiply Operator

Definition

Överlagringar

Name Description
Multiply(Size, Int32)

Multiplicerar det som anges Size av det angivna heltalet.

Multiply(Size, Single)

Multiplicerar det angivna Size flyttalsnumret med enkel precision.

Multiply(Int32, Size)

Multiplicerar det angivna heltalet med angivet Size.

Multiply(Single, Size)

Multiplicerar det angivna flyttalsnumret med enkel precision med det angivna Size.

Multiply(Size, Int32)

Källa:
Size.cs
Källa:
Size.cs
Källa:
Size.cs
Källa:
Size.cs
Källa:
Size.cs

Multiplicerar det som anges Size av det angivna heltalet.

public:
 static System::Drawing::Size operator *(System::Drawing::Size left, int right);
public static System.Drawing.Size operator *(System.Drawing.Size left, int right);
static member ( * ) : System.Drawing.Size * int -> System.Drawing.Size
Public Shared Operator * (left As Size, right As Integer) As Size

Parametrar

left
Size

Multiplicand.

right
Int32

Multiplikatorn.

Returer

Resultatet av att leftmultiplicera bredd och höjd med right.

Gäller för

Multiply(Size, Single)

Källa:
Size.cs
Källa:
Size.cs
Källa:
Size.cs
Källa:
Size.cs
Källa:
Size.cs

Multiplicerar det angivna Size flyttalsnumret med enkel precision.

public:
 static System::Drawing::SizeF operator *(System::Drawing::Size left, float right);
public static System.Drawing.SizeF operator *(System.Drawing.Size left, float right);
static member ( * ) : System.Drawing.Size * single -> System.Drawing.SizeF
Public Shared Operator * (left As Size, right As Single) As SizeF

Parametrar

left
Size

Multiplicand.

right
Single

Multiplikatorn.

Returer

Resultatet av att leftmultiplicera bredd och höjd med right.

Gäller för

Multiply(Int32, Size)

Källa:
Size.cs
Källa:
Size.cs
Källa:
Size.cs
Källa:
Size.cs
Källa:
Size.cs

Multiplicerar det angivna heltalet med angivet Size.

public:
 static System::Drawing::Size operator *(int left, System::Drawing::Size right);
public static System.Drawing.Size operator *(int left, System.Drawing.Size right);
static member ( * ) : int * System.Drawing.Size -> System.Drawing.Size
Public Shared Operator * (left As Integer, right As Size) As Size

Parametrar

left
Int32

Multiplikatorn.

right
Size

Multiplicand.

Returer

Resultatet av att rightmultiplicera bredd och höjd med left.

Gäller för

Multiply(Single, Size)

Källa:
Size.cs
Källa:
Size.cs
Källa:
Size.cs
Källa:
Size.cs
Källa:
Size.cs

Multiplicerar det angivna flyttalsnumret med enkel precision med det angivna Size.

public:
 static System::Drawing::SizeF operator *(float left, System::Drawing::Size right);
public static System.Drawing.SizeF operator *(float left, System.Drawing.Size right);
static member ( * ) : single * System.Drawing.Size -> System.Drawing.SizeF
Public Shared Operator * (left As Single, right As Size) As SizeF

Parametrar

left
Single

Multiplikatorn.

right
Size

Multiplicand.

Returer

Resultatet av att rightmultiplicera bredd och höjd med left.

Gäller för