共用方式為


CGContext.AddLines(CGPoint[]) 方法

定義

將指定的行新增至目前的路徑。

public void AddLines (CoreGraphics.CGPoint[] points);
member this.AddLines : CoreGraphics.CGPoint[] -> unit

參數

points
CGPoint[]

兩個或多個 PointF 的陣列。 直線線段會在循序點之間新增。

備註

線條會新增至目前的路徑,其中第一行線段從 [0] 開始 points 。 不會從 GetPathCurrentPoint() 新增一行。 在下列範例中,的目前位置 CGContext 是在 {20,20} 呼叫 MoveTo(nfloat, nfloat) 之後,但如影像所示,只會新增兩條線段。

using (var ctxt = UIGraphics.GetCurrentContext ()) {
	var startingPoint = new PointF (20, 20);
	ctxt.MoveTo (startingPoint.X, startingPoint.Y);
	ctxt.SetStrokeColor (UIColor.Red.CGColor);
	var sz = new SizeF (2, 2);
	Func<PointF,PointF> offset = (PointF pt) => new PointF (pt.X - 1, pt.Y - 1);
	ctxt.AddEllipseInRect (new RectangleF (offset (startingPoint), sz));

	ctxt.AddLines (new PointF[] {
		new PointF (30, 30),
		new PointF (60, 30),
		new PointF (40, 40)
	});

	ctxt.StrokePath ();
}              

適用於