MonoTouch.Dialog.OwnerDrawnElement.OwnerDrawnCellView.Draw C# (CSharp) Method

Draw() public method

public Draw ( RectangleF rect ) : void
rect System.Drawing.RectangleF
return void
			public override void Draw (RectangleF rect)
			{
				if (element==null)
					return;
				
				CGContext context = UIGraphics.GetCurrentContext();
				element.Draw(rect, context, this);
			}
		}
OwnerDrawnElement.OwnerDrawnCellView