PointF Struct

Definition

Represents an ordered pair of floating-point x- and y-coordinates that defines a point in a two-dimensional plane.

public value class PointF
public value class PointF : IEquatable<System::Drawing::PointF>
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public struct PointF
public struct PointF
public struct PointF : IEquatable<System.Drawing.PointF>
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type PointF = struct
type PointF = struct
Public Structure PointF
Public Structure PointF
Implements IEquatable(Of PointF)
Inheritance
PointF
Attributes
Implements

Remarks

To convert a PointF to a Point, use Point.Round or Point.Truncate.

Constructors

Name Description
PointF(Single, Single)

Initializes a new instance of the PointF class with the specified coordinates.

Fields

Name Description
Empty

Represents a new instance of the PointF class with member data left uninitialized.

Properties

Name Description
IsEmpty

Gets a value indicating whether this PointF is empty.

X

Gets or sets the x-coordinate of this PointF.

Y

Gets or sets the y-coordinate of this PointF.

Methods

Name Description
Add(PointF, Size)

Translates a given PointF by the specified Size.

Add(PointF, SizeF)

Translates a given PointF by a specified SizeF.

Equals(Object)

Specifies whether this PointF contains the same coordinates as the specified Object.

Equals(PointF)

Indicates whether the current object is equal to another object of the same type.

GetHashCode()

Returns a hash code for this PointF structure.

Subtract(PointF, Size)

Translates a PointF by the negative of a specified size.

Subtract(PointF, SizeF)

Translates a PointF by the negative of a specified size.

ToString()

Converts this PointF to a human readable string.

Operators

Name Description
Addition(PointF, Size)

Translates a PointF by a given Size.

Addition(PointF, SizeF)

Translates the PointF by the specified SizeF.

Equality(PointF, PointF)

Compares two PointF structures. The result specifies whether the values of the X and Y properties of the two PointF structures are equal.

Inequality(PointF, PointF)

Determines whether the coordinates of the specified points are not equal.

Subtraction(PointF, Size)

Translates a PointF by the negative of a given Size.

Subtraction(PointF, SizeF)

Translates a PointF by the negative of a specified SizeF.

Applies to