The Text Box control can be set to Read Only. This allows interaction with the control (for instance when scroll bars are required) without the content being edited.
The Read Only property prevents the text from being edited but still allows text selection and scrolling.
Property Type: Static
Default Value: False
Ensure the property is a static property (It will display the gray orb alongside the property name)
The default value of the static property can be changed by selecting the required value directly from the property field.
Read Only Property Value (static) | Result | Notes |
---|---|---|
True | Will allow interaction with the control without content being edited. | |
False | Will allow interaction with the control and allow content to be entered. |
A rule can also be built for this property by changing the type to dynamic.
See How To: Change A Static Property To A Dynamic Property.
Read Only Property Value (Dynamic) | Result | Notes |
---|---|---|
IF( NoteReturn=True, True, False) | Will make the control Read Only when the Note control equals TRUE, otherwise the control will allow data to be entered. |
Value set in Form Designer. For DriveWorks projects static properties can be made Dynamic by double clicking the gray radio button.