MonoTouch.Dialog.OwnerDrawnElement.OwnerDrawnCellView.Draw C# (CSharp) Метод

Draw() публичный Метод

public Draw ( RectangleF rect ) : void
rect System.Drawing.RectangleF
Результат void
			public override void Draw (RectangleF rect)
			{
				if (element==null)
					return;
				
				CGContext context = UIGraphics.GetCurrentContext();
				element.Draw(rect, context, this);
			}
		}
OwnerDrawnElement.OwnerDrawnCellView