개정판 b79d6e7f
Fix: ArrowTextControl, TextControl에 ArcLength 적용
Change-Id: I02e837c6e9e97fc48008ee3753012f8025414ffb
MarkupToPDF/Controls/Etc/DateControl.cs | ||
---|---|---|
43 | 43 |
|
44 | 44 |
public override void Copy(CommentUserInfo lhs) |
45 | 45 |
{ |
46 |
if(lhs is DateControl dateControl)
|
|
46 |
if(lhs is DateControl item)
|
|
47 | 47 |
{ |
48 |
this.CommentAngle = dateControl.CommentAngle;
|
|
49 |
this.StartPoint = new Point(dateControl.StartPoint.X, dateControl.StartPoint.Y);
|
|
50 |
this.EndPoint = new Point(dateControl.EndPoint.X, dateControl.EndPoint.Y);
|
|
51 |
this.LeftBottomPoint = new Point(dateControl.LeftBottomPoint.X, dateControl.LeftBottomPoint.Y);
|
|
52 |
this.TopRightPoint = new Point(dateControl.TopRightPoint.X, dateControl.TopRightPoint.Y);
|
|
53 |
this.Opacity = dateControl.Opacity;
|
|
54 |
this.FontColor = dateControl.FontColor;
|
|
55 |
this.LineSize = dateControl.LineSize;
|
|
56 |
this.Text = dateControl.Text;
|
|
57 |
this.PointSet = dateControl.PointSet.ConvertAll(x => new Point(x.X, x.Y));
|
|
58 |
this.UserID = dateControl.UserID;
|
|
59 |
this.Memo = dateControl.Memo;
|
|
48 |
CommentAngle = item.CommentAngle;
|
|
49 |
StartPoint = new Point(item.StartPoint.X, item.StartPoint.Y);
|
|
50 |
EndPoint = new Point(item.EndPoint.X, item.EndPoint.Y);
|
|
51 |
LeftBottomPoint = new Point(item.LeftBottomPoint.X, item.LeftBottomPoint.Y);
|
|
52 |
TopRightPoint = new Point(item.TopRightPoint.X, item.TopRightPoint.Y);
|
|
53 |
Opacity = item.Opacity;
|
|
54 |
FontColor = item.FontColor;
|
|
55 |
LineSize = item.LineSize;
|
|
56 |
Text = item.Text;
|
|
57 |
PointSet = item.PointSet.ConvertAll(x => new Point(x.X, x.Y));
|
|
58 |
UserID = item.UserID;
|
|
59 |
Memo = item.Memo;
|
|
60 | 60 |
} |
61 | 61 |
} |
62 | 62 |
|
내보내기 Unified diff