Inequality Operator (PointD)
                In This Topic
            
            Compares two PointD objects. The result specifies whether the values of the and 
Y properties of the two PointD objects are unequal.
Syntax
            
            
            
            
            'Declaration
 
Public Operator <>( _
   ByVal  As PointD, _
   ByVal  As PointD _
) As System.Boolean
             
        
            
            public System.bool operator !=( 
   PointD ,
   PointD 
)
             
        
             
        
            Parameters
- left
- A PointD to compare.
- right
- A PointD to compare.
Return Value
true if the 
X and 
Y values of the  and  differ; otherwise, 
false.
 
            
            
            
            
            
            
            
            
            
            
            See Also