MoveHandle() public method

public MoveHandle ( PointF oldHandle, PointF newHandle ) : void
oldHandle System.Drawing.PointF
newHandle System.Drawing.PointF
return void
Esempio n. 1
0
 // Update currentObj to reflect dragging to the given location.
 void DragTo(PointF location)
 {
     currentObj = (RectCourseObj)startingObj.Clone();
     currentObj.MoveHandle(handleDragging, location);
 }