Programming with Reflection
WordWrap3270 property
Syntax |
|
Data type |
Returns (first syntax line) or specifies (second syntax line) is wrapped to the next available field when entered text is too long to fit in a text entry field.
When WordWrap3270 is True, text is wrapped to the next field, provided the following conditions are met:
· The field length must be equal to or greater than the value specified by the WordWrap3270 MinimumFieldLength setting. (The default value is 40.)
· The continuation field must start at the same column position as the field that text is wrapping from.
When Word Wrap is False (the default) and text exceeds the current field length, Reflection attempts to enter it into the next available field. If this is a protected field, the text is truncated at the end of the unprotected field and the terminal enters reset mode.
For example, the following statements configure Reflection to wrap text whenever the text entry field is at least 50 characters long:
Session.WordWrap3270 = True
Session.WordWrap3270MinimumFieldLength = 50
The default value is False.