Click or drag to resize

RectangleFMultiply Operator (RectangleF, SizeF)

Multiplies the specified rectangle by the Width and Height of size

Namespace:  Eto.Drawing
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public static RectangleF operator *(
	RectangleF rectangle,
	SizeF size
)

Parameters

rectangle
Type: Eto.DrawingRectangleF
Rectangle to multiply
size
Type: Eto.DrawingSizeF
Width and Height to multiply the rectangle by

Return Value

Type: RectangleF
A new instance of a Rectangle with the product of the rectangle and size
Remarks
The X and Width components will be multiplied by the Width of the specified size, and the Y and Height components will be multiplied by the Height.
See Also