MoveHandle() public méthode

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