TextAreaIHandlerAppend Method |
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 void Append(
string text,
bool scrollToCursor
)
Sub Append (
text As String,
scrollToCursor As Boolean
)
abstract Append :
text : string *
scrollToCursor : bool -> unit
Parameters
- text
- Type: SystemString
Text to insert. - scrollToCursor
- 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