개정판 a6272c57
issue #923: add ICommentUserInfo interface
Change-Id: Id0b65251436a5aa647eef78026dfad90d3ca64ab
MarkupToPDF/Controls/Etc/ImgControl.cs | ||
---|---|---|
346 | 346 |
public Geometry PathData { get; set; } |
347 | 347 |
|
348 | 348 |
/// <summary> |
349 |
/// call when mouse is moving while drawing control |
|
350 |
/// </summary> |
|
351 |
/// <param name="pt"></param> |
|
352 |
/// <param name="bAxisLocked"></param> |
|
353 |
public override void OnCreatingMouseMove(Point pt, bool bAxisLocked, bool bShiftKeyPressed) |
|
354 |
{ |
|
355 |
this.EndPoint = pt; |
|
356 |
this.LeftBottomPoint = new Point(this.StartPoint.X, this.EndPoint.Y); |
|
357 |
this.TopRightPoint = new Point(this.EndPoint.X, this.StartPoint.Y); |
|
358 |
|
|
359 |
this.PointSet = new List<Point> |
|
360 |
{ |
|
361 |
this.StartPoint, |
|
362 |
this.LeftBottomPoint, |
|
363 |
this.EndPoint, |
|
364 |
this.TopRightPoint, |
|
365 |
}; |
|
366 |
} |
|
367 |
|
|
368 |
/// <summary> |
|
349 | 369 |
/// return ImgControl's area |
350 | 370 |
/// </summary> |
351 | 371 |
/// <author>humkyung</author> |
내보내기 Unified diff