Specifies the wrapping mode for the text of a
Label
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax Public Enumeration WrapMode
Members
| Member name | Value | Description |
---|
| None | 0 |
No wrapping, the text will clip when smaller than the required space for the text.
|
| Word | 1 |
Text will wrap by word to fit the horizontal space available
|
| Character | 2 |
Text will wrap by character to fit the horizontal space available
|
Remarks
Regardless of the mode, you can always add hard wraps by inserting newline characters.
See Also