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