PurplePen.CourseObj.GetHandleCursor C# (CSharp) Method

GetHandleCursor() public method

public GetHandleCursor ( PointF handlePoint ) : Cursor
handlePoint System.Drawing.PointF
return System.Windows.Forms.Cursor
        public virtual Cursor GetHandleCursor(PointF handlePoint)
        {
            return Util.MoveHandleCursor;
        }

Usage Example

Exemplo n.º 1
0
 public DragHandleMode(Controller controller, CourseObj courseObject, PointF handleLocation, PointF startDrag)
 {
     this.controller = controller;
     this.courseObjectStart = courseObject;
     this.courseObjectDrag = (CourseObj) (courseObject.Clone());
     this.handleLocation = handleLocation;
     this.handleCursor = courseObject.GetHandleCursor(handleLocation);
     this.startDrag = this.currentLocation = startDrag;
 }