This control allows editing of string data of unlimited size, spanning more than one line. The control will create scrollbars as necessary, and can edit string or unicode data.

Some of the more useful properties:

There are also two convenience methods:

scrollToBeginning() - moves the insertion point to the beginning of the text in the control. Equivalent to setting self.InsertionPoint = 0.

scrollToEnd() - moves the insertion point to the end of the text in the control. Equivalent to setting self.InsertionPoint = len(self.Value).


Some of the more common events:


See the Dabo Class Documentation for an exhaustive documentation of this control's Properties, Events and Methods.