Point

Point structure

Identifies a pixel offset on a page or image, usually the top-left corner of a redaction area.

public struct Point : IEquatable<Point>

Constructors

Name Description
Point(int, int) Creates a point for a redaction region origin.

Properties

Name Description
static Empty { get; } A point at the origin (0, 0).
X { get; } Horizontal offset from the left edge, in pixels.
Y { get; } Vertical offset from the top edge, in pixels.

Methods

Name Description
override Equals(object) Compares this point with another object.
Equals(Point) Compares coordinates with another point.
override GetHashCode() Returns a hash code derived from the coordinates.
override ToString() Returns the coordinates in a readable form.

See Also