Draw() public abstract method

public abstract Draw ( RectangleF bounds, CGContext context, UIView view ) : void
bounds System.Drawing.RectangleF
context CGContext
view UIView
return void
Example #1
0
            public override void Draw(RectangleF rect)
            {
                if (_Element == null)
                {
                    return;
                }

                CGContext context = UIGraphics.GetCurrentContext();

                _Element.Draw(rect, context, this);
            }
            public override void Draw(RectangleF rect)
            {
                CGContext context = UIGraphics.GetCurrentContext();

                element.Draw(rect, context, this);
            }