Size.op_Multiply

operator *

Multiplies a Size by an Int32 producing Size.

public static Size operator *(int left, Size right)
ParameterTypeDescription
leftInt32Multiplier of type Int32.
rightSizeMultiplicand of type Size.

Return Value

Product of type Size.

See Also


operator *

Multiplies Size by an Int32 producing Size.

public static Size operator *(Size left, int right)
ParameterTypeDescription
leftSizeMultiplicand of type Size.
rightInt32Multiplier of type Int32.

Return Value

Product of type Size.

See Also


operator *

Multiplies Size by a Single producing SizeF.

public static SizeF operator *(float left, Size right)
ParameterTypeDescription
leftSingleMultiplier of type Single.
rightSizeMultiplicand of type Size.

Return Value

Product of type SizeF.

See Also


operator *

Multiplies Size by a Single producing SizeF.

public static SizeF operator *(Size left, float right)
ParameterTypeDescription
leftSizeMultiplicand of type Size.
rightSingleMultiplier of type Single.

Return Value

Product of type SizeF.

See Also