Class POINT
Represents point.
Inheritance
System.Object
POINT
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Syncfusion.Windows.Shared
Assembly: Syncfusion.Shared.Wpf.dll
Syntax
public class POINT
Constructors
POINT()
Initializes a new instance of the POINT class.
Declaration
public POINT()
POINT(Int32, Int32)
Initializes a new instance of the POINT class.
Declaration
public POINT(int x, int y)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | x | The x value. |
System.Int32 | y | The y value. |
Fields
x
x coordinate.
Declaration
public int x
Field Value
Type |
---|
System.Int32 |
y
y coordinate.
Declaration
public int y
Field Value
Type |
---|
System.Int32 |
Methods
ToString()
Returns a System.String that represents the current POINT.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A System.String that represents the current POINT. |
Overrides
System.Object.ToString()