Translate the RectangleF by adding a vector Point to it.
Syntax

[C#]

static RectangleF operator + (RectangleF r, PointF p);
static RectangleF operator + (RectangleF r, SizeF s);

[Visual Basic]

Shared Function Operator + (r As RectangleF, p As PointF) As RectangleF
Shared Function Operator + (r As RectangleF, s As SizeF) As RectangleF
Params
Name Description
r RectangleF for translation.
p Point by which it should be translated.
s Size by which it should be translated.
return A RectangleF containing the result.
Notes

None.

Example

None.