Scale the coordinates of the Rectangle by a dividing 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 decreased.
return A Rectangle containing the result.
Notes

None.

Example

None.