ICSharpCode.TextEditor.Gui.CompletionWindow.DefaultCompletionData.InsertAction C# (CSharp) Method

InsertAction() public method

public InsertAction ( TextArea textArea, char ch ) : bool
textArea TextArea
ch char
return bool
		public virtual bool InsertAction(TextArea textArea, char ch)
		{
			textArea.InsertString(text);
			return false;
		}