Xwt.Drawing.BitmapImage.CopyArea C# (CSharp) Method

CopyArea() public method

public CopyArea ( int srcX, int srcY, int width, int height, BitmapImage dest, int destX, int destY ) : void
srcX int
srcY int
width int
height int
dest BitmapImage
destX int
destY int
return void
        public void CopyArea(int srcX, int srcY, int width, int height, BitmapImage dest, int destX, int destY)
        {
            dest.MakeWrittable ();
            var nr = dest.NativeRef;
            do {
                InitForToolkit (nr.Toolkit);
                nr.Toolkit.ImageBackendHandler.CopyBitmapArea (Backend, srcX, srcY, width, height, nr.Backend, destX, destY);
            } while (nr != dest.NativeRef);
        }