AppKit.TextKit.Formatter.SourceTextView.ReadSelectionFromPasteboard C# (CSharp) Метод

ReadSelectionFromPasteboard() публичный Метод

Reads the selection from pasteboard.
This method is overridden to update the formatting after the user pastes text into the view.
public ReadSelectionFromPasteboard ( NSPasteboard pboard ) : bool
pboard NSPasteboard The pasteboard being read.
Результат bool
		public override bool ReadSelectionFromPasteboard (NSPasteboard pboard)
		{
			// Console.WriteLine ("Read selection from pasteboard");
			var result = base.ReadSelectionFromPasteboard (pboard);
			if (Formatter !=null) Formatter.Reformat ();
			return result;
		}

Same methods

SourceTextView::ReadSelectionFromPasteboard ( NSPasteboard pboard, string type ) : bool