Form

GPALTextArea

GPALTextArea works like GPALInput but supports multiple lines of text. It renders as a resizable multi-line text box in the form. Use it when the data field requires more than one line - for example, notes, comments, or address blocks. FillInFrom, AppendFrom, and InsertFrom all work with GPALTextArea, and newlines in the data source are preserved.

Examples

GPAL Fluent: High-level fluent C# API

//GPALTextArea is the preferred control for any field where users need to enter more than one line of text. It supports word wrap and vertical scrolling automatically.

// Multi-line text area in a form

GPAL.Form

.WithTitle("Add Note")

.WithFormControl((TextArea)GPAL.TextArea

.WithText("Notes"))

.ShowDialog();

💬 Ask GPAL