Translates a Point by a given Size.
Syntax
'Declaration
Public Operator +( _
ByVal As Point, _
ByVal As Size _
) As Point
public Point operator +(
Point ,
Size
)
Parameters
- p1
- The Point to translate.
- sz
- A Size that specifies the pair of numbers to add to the coordinates of pt.
Return Value
The translated Point.
See Also