FillPath() public static method

public static FillPath ( Graphics g, System p, Color c ) : void
g System.Drawing.Graphics
p System
c Color
return void
Example #1
0
        public override void FillRenderVx(Brush brush, RenderVx renderVx)
        {
            //TODO: review brush implementation here
            WinGdiRenderVx wRenderVx = (WinGdiRenderVx)renderVx;

            VxsHelper.FillPath(_gfx, wRenderVx.path, this.FillColor);
        }
Example #2
0
        public override void FillRenderVx(RenderVx renderVx)
        {
            WinGdiRenderVx wRenderVx = (WinGdiRenderVx)renderVx;

            VxsHelper.FillPath(_gfx, wRenderVx.path, this.FillColor);
        }