MonoMac.CoreGraphics.CGPath.AddRects C# (CSharp) Method

AddRects() public method

public AddRects ( CGAffineTransform m, PointF points, int count ) : void
m CGAffineTransform
points System.Drawing.PointF
count int
return void
		public void AddRects (CGAffineTransform m, PointF [] points, int count)
		{
			if (count > points.Length)
				throw new ArgumentException ("count");
			CGPathAddLines (handle, ref m, points, count);
		}

Same methods

CGPath::AddRects ( CGAffineTransform m, RectangleF rects ) : void
CGPath::AddRects ( CGAffineTransform m, RectangleF rects, int count ) : void
CGPath::AddRects ( PointF points, int count ) : void
CGPath::AddRects ( RectangleF rects ) : void
CGPath::AddRects ( RectangleF rects, int count ) : void