AppKit.TextKit.Formatter.LanguageFormatter.LanguageFormatter C# (CSharp) Method

LanguageFormatter() public method

Initializes a new instance of the AppKit.TextKit.Formatter.LanguageFormatter class.
public LanguageFormatter ( NSTextView textEditor, LanguageDescriptor language ) : System
textEditor NSTextView The NSTextView that this language formatter will syntax highlight.
language LanguageDescriptor The defining the /// language syntax highlighting rules.
return System
		public LanguageFormatter (NSTextView textEditor, LanguageDescriptor language)
		{
			// initialize
			this.TextEditor = textEditor;
			this.Language = language;
		}
		#endregion