The number of decimal places accepted can be set for the following control types:
The Decimal Places property controls the number of decimal places shown in the control. If the value is set to a negative value, DriveWorks automatically determines the required number of decimal places.
Property Type: Static
Default Value: -1
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 typing the required value directly into the property field.
Decimal Places Property Value (static) | Result |
---|---|
4 | Will truncate the entered value to 4 decimal places. |
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.
Decimal Places Property Value (Dynamic) | Result |
---|---|
IF( LengthReturn<25, 3, 2) | Will truncate the entered value to 3 decimal places, when the control Length is less than 25, otherwise 2 decimal places will be allowed. |
Value set in Form Designer. For DriveWorks projects static properties can be made Dynamic by double clicking the gray radio button.