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

            Gdip.CheckStatus(status);
        }
Beispiel #3
0
        public void AddArc(RectangleF rect, float startAngle, float sweepAngle)
        {
            int status = Gdip.GdipAddPathArc(_nativePath, rect.X, rect.Y, rect.Width, rect.Height, startAngle, sweepAngle);

            Gdip.CheckStatus(status);
        }