Example #1
0
 public void DrawLayer(CGLayer layer, PointF point)
 {
     if (layer == null)
     {
         throw new ArgumentNullException("layer");
     }
     CGContextDrawLayerAtPoint(handle, point, layer.Handle);
 }
Example #2
0
 public void DrawLayer(CGLayer layer, RectangleF rect)
 {
     if (layer == null)
     {
         throw new ArgumentNullException("layer");
     }
     CGContextDrawLayerInRect(handle, rect, layer.Handle);
 }
Example #3
0
		public void DrawLayer (CGLayer layer, PointF point)
		{
			if (layer == null)
				throw new ArgumentNullException ("layer");
			CGContextDrawLayerAtPoint (handle, point, layer.Handle);
		}
Example #4
0
		public void DrawLayer (CGLayer layer, RectangleF rect)
		{
			if (layer == null)
				throw new ArgumentNullException ("layer");
			CGContextDrawLayerInRect (handle, rect, layer.Handle);
		}