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

DidChangeTypingAttributes() public method

Called when the typing attributes 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 DidChangeTypingAttributes ( NSNotification notification ) : void
notification NSNotification A notification defining the change.
return void
		public override void DidChangeTypingAttributes (NSNotification notification)
		{
			// Pass through to Text Editor event
			TextEditor.RaiseSourceTypingAttributesChanged(TextEditor, EventArgs.Empty);
		}
		#endregion