VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Annotation Namespace / LineCap Class / Equality(LineCap,LineCap) Operator
Syntax Requirements SeeAlso
In This Topic
    Equality(LineCap,LineCap) Operator (LineCap)
    In This Topic
    Tests whether two LineCap objects are equal.
    Syntax
    'Declaration
    
    Public Operator =( _
    ByVal lhs
    The LineCap object on the left side of the equality operator.
    As LineCap, _
    ByVal rhs
    The LineCap object on the right side of the equality operator.
    As LineCap _
    ) As Boolean
    public bool operator ==(
    LineCap lhs,
    LineCap rhs
    )
    public: bool op_Equality(
    LineCap* lhs,
    LineCap* rhs
    )
    public:
    bool operator ==(
    LineCap^ lhs,
    LineCap^ rhs
    )

    Parameters

    lhs
    The LineCap object on the left side of the equality operator.
    rhs
    The LineCap object on the right side of the equality operator.

    Return Value

    This operator returns true if lhs and rhs are equals; otherwise, false.
    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also