개정판 b2d0f316
Feature: 선택한 객체를 앞으로(+)/뒤로(-) 보내기 기능 추가
Change-Id: I9130a93cfdb2d079f28258f3d669a6f532695f89
MarkupToPDF/Controls/Etc/SymControlN.cs | ||
---|---|---|
51 | 51 |
this.Opacity = symControlN.Opacity; |
52 | 52 |
this.PathXathData = symControlN.PathXathData; |
53 | 53 |
this.Memo = symControlN.Memo; |
54 |
this.ZIndex = symControlN.ZIndex; |
|
54 | 55 |
} |
55 | 56 |
} |
56 | 57 |
|
... | ... | |
520 | 521 |
/// <returns></returns> |
521 | 522 |
public override string Serialize() |
522 | 523 |
{ |
523 |
using (S_SymControlN STemp = new S_SymControlN())
|
|
524 |
using (S_SymControlN ctrl = new S_SymControlN())
|
|
524 | 525 |
{ |
525 |
STemp.TransformPoint = "0|0"; |
|
526 |
STemp.PointSet = this.PointSet; |
|
527 |
//STemp.XamlData = this.PathXathData; |
|
528 |
STemp.UserID = this.UserID; |
|
529 |
STemp.DBData = this.PathXathData; |
|
530 |
//STemp.StrokeColor = this.StrokeColor.Color.ToString(); |
|
531 |
STemp.StartPoint = this.StartPoint; |
|
532 |
STemp.Angle = this.CommentAngle; |
|
533 |
STemp.EndPoint = this.EndPoint; |
|
534 |
STemp.LB = this.LeftBottomPoint; |
|
535 |
STemp.TR = this.TopRightPoint; |
|
536 |
STemp.Opac = this.Opacity; |
|
537 |
STemp.Name = this.GetType().Name.ToString(); |
|
538 |
|
|
539 |
return "|DZ|" + JsonSerializerHelper.CompressString((STemp.JsonSerialize())); |
|
526 |
ctrl.TransformPoint = "0|0"; |
|
527 |
ctrl.PointSet = this.PointSet; |
|
528 |
//ctrl.XamlData = this.PathXathData; |
|
529 |
ctrl.UserID = this.UserID; |
|
530 |
ctrl.DBData = this.PathXathData; |
|
531 |
//ctrl.StrokeColor = this.StrokeColor.Color.ToString(); |
|
532 |
ctrl.StartPoint = this.StartPoint; |
|
533 |
ctrl.Angle = this.CommentAngle; |
|
534 |
ctrl.EndPoint = this.EndPoint; |
|
535 |
ctrl.LB = this.LeftBottomPoint; |
|
536 |
ctrl.TR = this.TopRightPoint; |
|
537 |
ctrl.Opac = this.Opacity; |
|
538 |
ctrl.Name = this.GetType().Name.ToString(); |
|
539 |
ctrl.ZIndex = this.ZIndex; |
|
540 |
|
|
541 |
return "|DZ|" + JsonSerializerHelper.CompressString((ctrl.JsonSerialize())); |
|
540 | 542 |
} |
541 | 543 |
} |
542 | 544 |
|
... | ... | |
559 | 561 |
TopRightPoint = s.TR, |
560 | 562 |
Opacity = s.Opac, |
561 | 563 |
PathXathData = s.DBData, |
562 |
Memo = s.Memo |
|
564 |
Memo = s.Memo, |
|
565 |
ZIndex = s.ZIndex |
|
563 | 566 |
}; |
564 | 567 |
} |
565 | 568 |
} |
내보내기 Unified diff