SmartZone v8.0 - Updated
Accusoft.SmartZoneOCR.Net Assembly / Accusoft.SmartZoneOCRSdk Namespace / Zone Structure / Inequality Operator
The Zone structure that is to the left of the inequality operator.
The Zone structure that is to the right of the inequality operator.




In This Topic
    Inequality Operator (Zone)
    In This Topic
    Tests whether two Zone structures differ in location or size. The Zone structure that is to the left of the inequality operator. The Zone structure that is to the right of the inequality operator.
    Syntax
    'Declaration
     
    
    Public Operator <>( _
       ByVal left As Zone, _
       ByVal right As Zone _
    ) As Boolean
    'Usage
     
    
    public bool operator !=( 
       Zone left,
       Zone right
    )
    public: bool op_Inequality( 
       Zone left,
       Zone right
    )
    public:
    bool operator !=( 
       Zone left,
       Zone right
    )

    Parameters

    left
    The Zone structure that is to the left of the inequality operator.
    right
    The Zone structure that is to the right of the inequality operator.

    Return Value

    This operator returns true if any of the X, Y, Width, and Height properties of the two Zone structures are unequal; otherwise false.
    See Also