PointF.Set Method
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
Set(PointF) |
Set the point's x and y coordinates to the coordinates of p |
Set(Single, Single) |
Set the point's x and y coordinates |
Set(PointF)
Set the point's x and y coordinates to the coordinates of p
[Android.Runtime.Register("set", "(Landroid/graphics/PointF;)V", "")]
public void Set (Android.Graphics.PointF p);
[<Android.Runtime.Register("set", "(Landroid/graphics/PointF;)V", "")>]
member this.Set : Android.Graphics.PointF -> unit
Parameters
- p
- PointF
- Attributes
Remarks
Set the point's x and y coordinates to the coordinates of p
Java documentation for android.graphics.PointF.set(android.graphics.PointF)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Set(Single, Single)
Set the point's x and y coordinates
[Android.Runtime.Register("set", "(FF)V", "")]
public void Set (float x, float y);
[<Android.Runtime.Register("set", "(FF)V", "")>]
member this.Set : single * single -> unit
Parameters
- x
- Single
- y
- Single
- Attributes
Remarks
Set the point's x and y coordinates
Java documentation for android.graphics.PointF.set(float, float)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.