Method
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)