Point Constructors

Definition

Overloads

Point(Size)

Creates a new Point object that has coordinates that are specified by the width and height of sz, in that order.

Point(Double, Double)

Creates a new Point object that represents the point (x,y).

Point(Size)

Creates a new Point object that has coordinates that are specified by the width and height of sz, in that order.

public Point (Xamarin.Forms.Size sz);
new Xamarin.Forms.Point : Xamarin.Forms.Size -> Xamarin.Forms.Point

Parameters

sz
Size

Size that specifies a Point that has the coordinates (Width, Height).

Applies to

Point(Double, Double)

Creates a new Point object that represents the point (x,y).

public Point (double x, double y);
new Xamarin.Forms.Point : double * double -> Xamarin.Forms.Point

Parameters

x
Double

The horizontal coordinate.

y
Double

The vertical coordinate.

Applies to