예제 #1
0
        public void AddBeziers(PointF [] pts)
        {
            if (pts == null)
            {
                throw new ArgumentNullException("pts");
            }
            Status status = GDIPlus.GdipAddPathBeziers(nativePath, pts, pts.Length);

            GDIPlus.CheckStatus(status);
        }