Append the specified text to the control and optionally scrolls to make the inserted text visible.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public void Append(
string text,
bool scrollToCursor = false
)
Public Sub Append (
text As String,
Optional scrollToCursor As Boolean = false
)
member Append :
text : string *
?scrollToCursor : bool
(* Defaults:
let _scrollToCursor = defaultArg scrollToCursor false
*)
-> unit
Parameters
- text
- Type: SystemString
Text to insert. - scrollToCursor (Optional)
- Type: SystemBoolean
If set to true, scroll to the inserted text.
Remarks
This is an optimized way of inserting text into a TextArea when its content gets large.
See Also