Eto.Forms.TextArea.Append C# (CSharp) Method

Append() public method

Append the specified text to the control and optionally scrolls to make the inserted text visible.
This is an optimized way of inserting text into a TextArea when its content gets large.
public Append ( string text, bool scrollToCursor = false ) : void
text string Text to insert.
scrollToCursor bool If set to true, scroll to the inserted text.
return void
		public void Append(string text, bool scrollToCursor = false)
		{
			Handler.Append(text, scrollToCursor);
		}