Alsing.Drawing.GDI.GDISurface.RenderTo C# (CSharp) Method

RenderTo() public method

public RenderTo ( GDISurface target, int SourceX, int SourceY, int Width, int Height, int DestX, int DestY ) : void
target GDISurface
SourceX int
SourceY int
Width int
Height int
DestX int
DestY int
return void
        public void RenderTo(GDISurface target, int SourceX, int SourceY, int Width, int Height, int DestX, int DestY)
        {
            NativeMethods.BitBlt(target.hDC, DestX, DestY, Width, Height, hDC, SourceX, SourceY, (int) GDIRop.SrcCopy);
        }

Same methods

GDISurface::RenderTo ( GDISurface target, int x, int y ) : void
GDISurface::RenderTo ( IntPtr hdc, int x, int y ) : void