프로젝트

일반

사용자정보

개정판 b2d0f316

IDb2d0f316125ad5439e7530cf5ec796805b5d1dd4
상위 ff2f8d1d
하위 5c3caba6

백흠경이(가) 6달 전에 추가함

Feature: 선택한 객체를 앞으로(+)/뒤로(-) 보내기 기능 추가

Change-Id: I9130a93cfdb2d079f28258f3d669a6f532695f89

차이점 보기:

MarkupToPDF/Controls/Line/ArrowArcControl.cs
58 58
                this.LineSize = ArrowArcCtrl.LineSize;
59 59
                this.UserID = ArrowArcCtrl.UserID;
60 60
                this.Memo = ArrowArcCtrl.Memo;
61
                this.ZIndex = ArrowArcCtrl.ZIndex;
61 62
            }
62 63
        }
63 64

  
......
594 595
        /// <returns></returns>
595 596
        public override string Serialize()
596 597
        {
597
            using (S_ArrowArcControl STemp = new S_ArrowArcControl())
598
            using (S_ArrowArcControl ctrl = new S_ArrowArcControl())
598 599
            {
599
                STemp.TransformPoint = "0|0";
600
                STemp.PointSet = this.PointSet;
601
                STemp.SizeSet = String.Format("{0}", this.LineSize);
602
                //STemp.StrokeColor = "#FF000FFF";
603
                STemp.StrokeColor = this.StrokeColor.Color.ToString();
604
                STemp.StartPoint = this.StartPoint;
605
                STemp.UserID = this.UserID;
606
                STemp.Opac = this.Opacity;
607
                STemp.MidPoint = this.MiddlePoint;
608
                STemp.EndPoint = this.EndPoint;
609
                STemp.IsTransOn = this.isTransOn;
610
                STemp.DashSize = this.DashSize;
611
                STemp.Clock = this.Clock;
612
                //STemp.ArcStyleSet = this.ControlType;
613
                STemp.Name = this.GetType().Name.ToString();
600
                ctrl.TransformPoint = "0|0";
601
                ctrl.PointSet = this.PointSet;
602
                ctrl.SizeSet = String.Format("{0}", this.LineSize);
603
                //ctrl.StrokeColor = "#FF000FFF";
604
                ctrl.StrokeColor = this.StrokeColor.Color.ToString();
605
                ctrl.StartPoint = this.StartPoint;
606
                ctrl.UserID = this.UserID;
607
                ctrl.Opac = this.Opacity;
608
                ctrl.MidPoint = this.MiddlePoint;
609
                ctrl.EndPoint = this.EndPoint;
610
                ctrl.IsTransOn = this.isTransOn;
611
                ctrl.DashSize = this.DashSize;
612
                ctrl.Clock = this.Clock;
613
                //ctrl.ArcStyleSet = this.ControlType;
614
                ctrl.Name = this.GetType().Name.ToString();
614 615

  
615 616
                ///강인구 추가(2017.11.02)
616 617
                ///Memo 추가
617
                STemp.Memo = this.Memo;
618
                ctrl.Memo = this.Memo;
618 619

  
619
                return "|DZ|" + JsonSerializerHelper.CompressString((STemp.JsonSerialize()));
620
                ctrl.ZIndex = this.ZIndex;
621

  
622
                return "|DZ|" + JsonSerializerHelper.CompressString((ctrl.JsonSerialize()));
620 623
            }
621 624
        }
622 625

  
......
645 648
                    Clock = s.Clock,
646 649
                    LineSize = Convert.ToDouble(data2.First()),
647 650
                    UserID = s.UserID,
648
                    Memo = s.Memo
651
                    Memo = s.Memo,
652
                    ZIndex = s.ZIndex
649 653
                };
650 654
            }
651 655

  

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)