Blazor | ComponentOne
C1.Blazor.Chart Assembly / C1.Blazor.Chart Namespace / Padding Structure / Subtraction Operator
The System.Windows.Forms.Padding to subtract from (the minuend).
The System.Windows.Forms.Padding to subtract from (the subtrahend).

In This Topic
    Subtraction Operator
    In This Topic
    Performs vector subtraction 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 System.Windows.Forms.Padding to subtract from (the minuend).
    p2
    The System.Windows.Forms.Padding to subtract from (the subtrahend).

    Return Value

    The System.Windows.Forms.Padding result of subtracting p2 from p1.
    See Also