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

    Parameters

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

    Return Value

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

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

    See Also