Point Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Point(Size) |
Creates a new Point object that has coordinates that are specified by the width and height of |
Point(Double, Double) |
Creates a new Point object that represents the point ( |
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
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
- System.Double
The horizontal coordinate.
- y
- System.Double
The vertical coordinate.