RectangleMultiply Operator (Rectangle, Size) |
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 Rectangle operator *(
Rectangle rectangle,
Size size
)
Public Shared Operator * (
rectangle As Rectangle,
size As Size
) As Rectangle
static let inline (*)
rectangle : Rectangle *
size : Size : Rectangle
Parameters
- rectangle
- Type: Eto.DrawingRectangle
Rectangle to multiply - size
- Type: Eto.DrawingSize
Width and Height to multiply the rectangle by
Return Value
Type:
RectangleA new instance of a Rectangle with the product of the
rectangle and
sizeRemarks
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