|   | Point Operators and Type Conversions | 
The Point type exposes the following members.
 Operators
Operators| Name | Description | |
|---|---|---|
|   | Addition(Point, Point) | 
            Addition operator - adds values of two points.
             | 
|   | Addition(Point, Single) | 
            Addition operator - adds scalar to the specified point.
             | 
|   | Division | 
            Division operator - divides coordinates of the specified point by scalar value.
             | 
|   | Equality | 
             Equality operator - checks if two points have equal coordinates.
              | 
|   | (Point to IntPoint) | 
            Explicit conversion to IntPoint.
             | 
|   | (Point to DoublePoint) | 
            Implicit conversion to DoublePoint.
             | 
|   | Inequality | 
             Inequality operator - checks if two points have different coordinates.
              | 
|   | Multiply | 
             Multiplication operator - multiplies coordinates of the specified point by scalar value.
              | 
|   | Subtraction(Point, Point) | 
             Subtraction operator - subtracts values of two points.
              | 
|   | Subtraction(Point, Single) | 
            Subtraction operator - subtracts scalar from the specified point.
             | 
 See Also
See Also