PurplePen.CourseObj.Clone C# (CSharp) 메소드

Clone() 공개 메소드

public Clone ( ) : object
리턴 object
        public virtual object Clone()
        {
            return base.MemberwiseClone();
        }

Usage Example

 public TopologyDragControlMode(Controller controller, EventDB eventDB, SelectionMgr selectionMgr, CourseObj courseObject, PointF startDrag, PointF currentLocation)
 {
     this.controller = controller;
     this.eventDB = eventDB;
     this.selectionMgr = selectionMgr;
     this.courseObjectStart = courseObject;
     this.courseObjectDrag = (CourseObj)(courseObject.Clone());
     this.startDrag = startDrag;
     this.currentLocation = currentLocation;
     this.dropTargetHighlight = null;
 }
All Usage Examples Of PurplePen.CourseObj::Clone