Show / Hide Table of Contents

Struct WindowsTouchInputDeviceImp.POINT

The touch point.

Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Fusee.Engine.Imp.Graphics.Desktop
Assembly: Fusee.Engine.Imp.Graphics.Desktop.dll
Syntax
public struct POINT

Constructors

POINT(Point)

Initializes a new instance of the WindowsTouchInputDeviceImp.POINT struct from a given System.Drawing.Point.

Declaration
public POINT(Point pt)
Parameters
Type Name Description
System.Drawing.Point pt

The System.Drawing.Point to create the instance from.

POINT(Int32, Int32)

Initializes a new instance of the WindowsTouchInputDeviceImp.POINT struct.

Declaration
public POINT(int x, int y)
Parameters
Type Name Description
System.Int32 x

The x coordinate.

System.Int32 y

The y coordinate.

Fields

X

The X coordinate of the touch point.

Declaration
public int X
Field Value
Type Description
System.Int32

Y

The Y coordinate of the touch point.

Declaration
public int Y
Field Value
Type Description
System.Int32

Operators

Implicit(WindowsTouchInputDeviceImp.POINT to Point)

Converts a WindowsTouchInputDeviceImp.POINT to a System.Drawing.Point.

Declaration
public static implicit operator Point(WindowsTouchInputDeviceImp.POINT p)
Parameters
Type Name Description
WindowsTouchInputDeviceImp.POINT p

The WindowsTouchInputDeviceImp.POINT to convert.

Returns
Type Description
System.Drawing.Point

Implicit(Point to WindowsTouchInputDeviceImp.POINT)

Converts a System.Drawing.Point to a WindowsTouchInputDeviceImp.POINT.

Declaration
public static implicit operator WindowsTouchInputDeviceImp.POINT(Point p)
Parameters
Type Name Description
System.Drawing.Point p

The System.Drawing.Point to convert.

Returns
Type Description
WindowsTouchInputDeviceImp.POINT
Generated by DocFX
GitHub Repo
Back to top