Scale the coordinates of the Rectangle by a multiplying factor.
Syntax

[C#]

static Rectangle operator * (Rectangle r, double scale);

[Visual Basic]

Shared Function Operator * (r As Rectangle, scale As Double) As Rectangle
Params
Name Description
r Rectangle for scaling.
scale Factor by which the coordinates should be increased.
return A Rectangle containing the result.
Notes

None.

Example

None.