Blazor | ComponentOne
C1.Blazor.Chart Assembly / C1.Blazor.Chart Namespace / Padding Structure / Addition Operator
The first System.Windows.Forms.Padding to add.
The second System.Windows.Forms.Padding to add.

In This Topic
    Addition Operator (Padding)
    In This Topic
    Performs vector addition on the two specified System.Windows.Forms.Padding objects, resulting in a new System.Windows.Forms.Padding.
    Syntax
    'Declaration
     
    
    Public Operator +( _
       ByVal p1 As Padding, _
       ByVal p2 As Padding _
    ) As Padding
    public Padding operator +( 
       Padding p1,
       Padding p2
    )

    Parameters

    p1
    The first System.Windows.Forms.Padding to add.
    p2
    The second System.Windows.Forms.Padding to add.

    Return Value

    A new System.Windows.Forms.Padding that results from adding p1 and p2.
    See Also