Addition Operator (Point)
'Declaration
Public Operator +( _
ByVal As Point, _
ByVal As Size _
) As Point
public Point operator +(
Point ,
Size
)
Parameters
- pt
- The Point that is added.
- sz
- The Size that is added.
Return Value
A Point representing the result of the addition.