Show / Hide Table of Contents

    Struct Point

    Definition

    Namespace:
    Tizen.Multimedia
    Assembly:
    Tizen.Multimedia.dll
    API Level:
    3

    Represents a point in the 2D space.

    public struct Point

    Constructors

    View Source

    Point(Int32, Int32)

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

    Declaration
    public Point(int x, int y)
    Parameters
    Type Name Description
    Int32 x

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

    Int32 y

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

    API Level: 3

    Properties

    View Source

    X

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

    Declaration
    public int X { get; set; }
    Property Value
    Type Description
    Int32
    API Level: 3
    View Source

    Y

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

    Declaration
    public int Y { get; set; }
    Property Value
    Type Description
    Int32
    API Level: 3

    Methods

    View Source

    Equals(Object)

    Compares an object to an instance of Point for equality.

    Declaration
    public override bool Equals(object obj)
    Parameters
    Type Name Description
    Object obj

    A Object to compare.

    Returns
    Type Description
    Boolean

    true if the points are equal; otherwise, false.

    Overrides
    ValueType.Equals(Object)
    API Level: 3
    View Source

    GetHashCode()

    Gets the hash code for this instance of Point.

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    Int32

    The hash code for this instance of Point.

    Overrides
    ValueType.GetHashCode()
    API Level: 3
    View Source

    ToString()

    Returns a string that represents the current object.

    Declaration
    public override string ToString()
    Returns
    Type Description
    String

    A string that represents the current object.

    Overrides
    ValueType.ToString()
    API Level: 3

    Operators

    View Source

    Equality(Point, Point)

    Compares two instances of Point for equality.

    Declaration
    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
    Boolean

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

    API Level: 3
    View Source

    Inequality(Point, Point)

    Compares two instances of Point for inequality.

    Declaration
    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
    Boolean

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

    API Level: 3
    • View Source
    Back to top Copyright © 2016-2020 Samsung
    Generated by DocFX