Struct NativeTouch.POINTS
Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional plane.
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
Namespace: Syncfusion.WinForms.Core
Assembly: Syncfusion.Shared.Base.dll
Syntax
public struct POINTS
Fields
X
Gets or sets the x-coordinate of this Point.
Declaration
public short X
Field Value
Type |
---|
System.Int16 |
Y
Gets or sets the Y-coordinate value of this Point.
Declaration
public short Y
Field Value
Type |
---|
System.Int16 |
Methods
ToPoint()
Converts the x and y coordinate values to the point.
Declaration
public Point ToPoint()
Returns
Type | Description |
---|---|
System.Drawing.Point | Returns the point value. |