Share via


PathF.SetPoint Method

Definition

Overloads

SetPoint(Int32, PointF)

Sets the point at the specified index.

SetPoint(Int32, Single, Single)

Sets the coordinates of the point at the specified index.

SetPoint(Int32, PointF)

Source:
PathF.cs
Source:
PathF.cs
Source:
PathF.cs

Sets the point at the specified index.

public:
 void SetPoint(int index, Microsoft::Maui::Graphics::PointF point);
public void SetPoint(int index, Microsoft.Maui.Graphics.PointF point);
member this.SetPoint : int * Microsoft.Maui.Graphics.PointF -> unit
Public Sub SetPoint (index As Integer, point As PointF)

Parameters

index
Int32

Index of the point.

point
PointF

The new point value.

Applies to

SetPoint(Int32, Single, Single)

Source:
PathF.cs
Source:
PathF.cs
Source:
PathF.cs

Sets the coordinates of the point at the specified index.

public:
 void SetPoint(int index, float x, float y);
public void SetPoint(int index, float x, float y);
member this.SetPoint : int * single * single -> unit
Public Sub SetPoint (index As Integer, x As Single, y As Single)

Parameters

index
Int32

Index of the point.

x
Single

New X value.

y
Single

New Y value.

Applies to