MonoTouch.Dialog.OwnerDrawnElement.OwnerDrawnCellView.Draw C# (CSharp) Méthode

Draw() public méthode

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