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

SetPixel() public method

public SetPixel ( int x, int y, Color color ) : void
x int
y int
color Color
return void
        public void SetPixel(int x, int y, Color color)
        {
            MakeWrittable ();
            var nr = NativeRef;
            do {
                nr.Toolkit.ImageBackendHandler.SetBitmapPixel (nr.Backend, x, y, color);
                nr = nr.NextRef;
            } while (nr != NativeRef);
        }