Beispiel #1
0
 public void AddPie(int x, int y, int width, int height, float startAngle, float sweepAngle)
 {
     Gdip.CheckStatus(Gdip.GdipAddPathPieI(
                          new HandleRef(this, _nativePath),
                          x, y, width, height,
                          startAngle,
                          sweepAngle));
 }
Beispiel #2
0
        public void AddPie(int x, int y, int width, int height, float startAngle, float sweepAngle)
        {
            int status = Gdip.GdipAddPathPieI(_nativePath, x, y, width, height, startAngle, sweepAngle);

            Gdip.CheckStatus(status);
        }