Struct Point

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.dll

Represents a point in the 2D space.

C#
Copy
public struct Point

Constructors

View Source

Point(int, int)

Initializes a new instance of the Point with the specified coordinates.

Declaration
C#
Copy
public Point(int x, int y)
Parameters
Type Name Description
int x

X-axis coordinate of the point in the 2D space.

int y

Y-axis coordinate of the point in the 2D space.

Properties

View Source

X

Gets or sets the X-axis coordinate of the point in the 2D space.

Declaration
C#
Copy
public int X { get; set; }
Property Value
Type Description
int
View Source

Y

Gets or sets the Y-axis coordinate of the point in the 2D space.

Declaration
C#
Copy
public int Y { get; set; }
Property Value
Type Description
int

Methods

View Source

Equals(object)

Compares an object to an instance of Point for equality.

Declaration
C#
Copy
public override bool Equals(object obj)
Parameters
Type Name Description
object obj

A object to compare.

Returns
Type Description
bool

true if the points are equal; otherwise, false.

Overrides
System.ValueType.Equals(object)
View Source

GetHashCode()

Gets the hash code for this instance of Point.

Declaration
C#
Copy
public override int GetHashCode()
Returns
Type Description
int

The hash code for this instance of Point.

Overrides
System.ValueType.GetHashCode()
View Source

ToString()

Returns a string that represents the current object.

Declaration
C#
Copy
public override string ToString()
Returns
Type Description
string

A string that represents the current object.

Overrides
System.ValueType.ToString()

Operators

View Source

operator ==(Point, Point)

Compares two instances of Point for equality.

Declaration
C#
Copy
public static bool operator ==(Point point1, Point point2)
Parameters
Type Name Description
Point point1

A Point to compare.

Point point2

A Point to compare.

Returns
Type Description
bool

true if the two instances of Point are equal; otherwise false.

View Source

operator !=(Point, Point)

Compares two instances of Point for inequality.

Declaration
C#
Copy
public static bool operator !=(Point point1, Point point2)
Parameters
Type Name Description
Point point1

A Point to compare.

Point point2

A Point to compare.

Returns
Type Description
bool

true if the two instances of Point are not equal; otherwise false.