Alsing.Drawing.GDI.GDISurface.SetBrushOrg C# (CSharp) Метод

SetBrushOrg() публичный Метод

public SetBrushOrg ( int x, int y ) : void
x int
y int
Результат void
        public void SetBrushOrg(int x, int y)
        {
            APIPoint p;
            p.x = 0;
            p.y = 0;
            NativeMethods.SetBrushOrgEx(mhDC, x, y, ref p);
        }
    }