AppKit.TextKit.Formatter.SourceTextView.DraggingEntered C# (CSharp) Method

DraggingEntered() public method

Called when a drag operation is started for this AppKit.TextKit.Formatter.SourceTextView.
See Apple's drag and drop docs for more details (https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/DragandDrop/DragandDrop.html)
public DraggingEntered ( NSDraggingInfo sender ) : NSDragOperation
sender NSDraggingInfo Sender.
return NSDragOperation
		public override NSDragOperation DraggingEntered (NSDraggingInfo sender)
		{
			// When we start dragging, inform the system that we will be handling this as
			// a copy/paste
			return NSDragOperation.Copy;
		}