AppKit.TextKit.Formatter.SourceTextViewDelegate.DidChangeSelection C# (CSharp) Method

DidChangeSelection() public method

Called when the text selection has changed.
Because a custom Delegate has been attached to the NSTextView, the normal events will not work so we are using this method to call custom AppKit.TextKit.Formatter.SourceTextView events instead.
public DidChangeSelection ( NSNotification notification ) : void
notification NSNotification A notification defining the change.
return void
		public override void DidChangeSelection (NSNotification notification)
		{
			// Pass through to Text Editor event
			TextEditor.RaiseSourceSelectionChanged(TextEditor, EventArgs.Empty);
		}