Click or drag to resize

PointF Operators and Type Conversions

The PointF type exposes the following members.

Operators
  NameDescription
Public operatorStatic memberAddition(PointF, PointF)
Operator to return the addition of two points as a PointF
Public operatorStatic memberAddition(PointF, SizeF)
Operator to add a size to a point
Public operatorStatic memberAddition(PointF, Single)
Operator to add a value to both the X and Y co-ordinates of a point
Public operatorStatic memberDivision(PointF, SizeF)
Divides the specified point with a size
Public operatorStatic memberDivision(PointF, Single)
Divides the X and Y co-ordinates of the specified point with a given value
Public operatorStatic memberEquality
Determines equality between two points
Public operatorStatic member(SizeF to PointF)
Explicit conversion from a size to a PointF with a X and Y of the Width and Height values of the size, respectively
Public operatorStatic member(Point to PointF)
Implicit conversion from a Point to a PointF
Public operatorStatic memberInequality
Determines the inequality between two points
Public operatorStatic memberMultiply(Single, PointF)
Multiplies the X and Y co-ordinates of the specified point with a given factor
Public operatorStatic memberMultiply(PointF, PointF)
Multiplies the X and Y co-ordinates of the two specified point values
Public operatorStatic memberMultiply(PointF, SizeF)
Multiplies the specified point with a size
Public operatorStatic memberMultiply(PointF, Single)
Multiplies the X and Y co-ordinates of the specified point with a given factor
Public operatorStatic memberSubtraction(PointF, PointF)
Operator to return the difference between two points as a PointF
Public operatorStatic memberSubtraction(PointF, SizeF)
Operator to subtract a size from a point
Public operatorStatic memberSubtraction(PointF, Single)
Operator to subtract a value from both the X and Y co-ordinates of a point
Public operatorStatic memberUnaryNegation
Returns a new PointF with negative x and y values of the specified point
Top
See Also