예제 #1
0
        public override void SetClosedState(bool closed)
        {
            if (bezierPath != null)
            {
                if (closed)
                {
#if XAMARIN_IOS || XAMARIN_IOS_UNIFIED
                    bezierPath.ClosePath();
#elif XAMARIN_ANDROID
                    bezierPath.Close();
#endif
                }
            }
        }
예제 #2
0
        public override void SetClosedState(bool closed)
        {
            if (bezierPath != null)
            {
                if (closed)
                {
#if __IOS__
                    bezierPath.ClosePath();
#elif __ANDROID__
                    bezierPath.Close();
#endif
                }
            }
        }