Closes #19945: Create DecimalVar class for custom script input (#19963)

This commit is contained in:
Kyer
2025-07-29 08:49:33 -05:00
committed by GitHub
parent 6b70dea18b
commit 89a94486e1
3 changed files with 79 additions and 0 deletions

View File

@@ -275,6 +275,15 @@ Stores a numeric integer. Options include:
* `min_value` - Minimum value
* `max_value` - Maximum value
### DecimalVar
Stores a numeric decimal. Options include:
* `min_value` - Minimum value
* `max_value` - Maximum value
* `max_digits` - Maximum number of digits, including decimal places
* `decimal_places` - Number of decimal places
### BooleanVar
A true/false flag. This field has no options beyond the defaults listed above.