Multi-line text widget

FXText provides a multi-line text entry area.

For example,

text = FXText(parent, None, 0,
    LAYOUT_FIX_WIDTH|LAYOUT_FIX_HEIGHT, 0, 0, 300, 100)
text.setText('This is an FXText widget')
Figure 1. An example of a multi-line text entry area from FXText.