InputPanel for WinForms | ComponentOne
C1.Win.5 Assembly / C1.Win.Interop Namespace / Point Structure / Addition Operator
The Point that is added.
The Size that is added.

In This Topic
    Addition Operator (Point)
    In This Topic
    Adds a Size to a Point.
    Syntax
    'Declaration
     
    Public Operator +( _
       ByVal pt As Point, _
       ByVal sz As Size _
    ) As Point
    public Point operator +( 
       Point pt,
       Size sz
    )

    Parameters

    pt
    The Point that is added.
    sz
    The Size that is added.

    Return Value

    A Point representing the result of the addition.
    See Also