iOSGraphics.DrawPath

From Xojo Documentation

Method

iOSGraphics.DrawPath(path As iOSPath)

Supported on Mobile(iOS).

Draws the specified path.

Sample Code

From within an iOSCanvas.Paint event handler:

// Draw a triangle
Var p As New iOSPath
p.MoveToPoint(0, 0) // Start location
p.LineToPoint(20, 44)
p.LineToPoint(40, 0)
p.LineToPoint(0, 0)

g.LineColor = Color.Blue
g.DrawPath(p)