The Word Wrap property will wrap the data being entered to fit within the width of the control.
Property Type: Fixed
Default Value: False
By default the Word Wrap property is set to False.
The Word Wrap property requires a boolean value (True or False).
The default value of the property can be changed by selecting the drop down list at the end of the property field
Word Wrap Property Value (static) | Multiline Property Value (static) | Result |
---|---|---|
False | False | Data entered extends beyond the width of the control. |
False | True | Data entered extends beyond the width of the control. Horizontal scroll bars allow extent of the data to be reached. |
True | False | |
True | True |
Word Wrap Property Value (dynamic) | Result |
---|---|
IF(DWVariableNumberOfChars > 50, TRUE, FALSE) | Will set the property to True when the variable NumberOfChars is greater than 50. Otherwise it will be set to False. |
A type of control property where the value can only be set in the Form Designer (not by a rule).