diff --git a/Base/usr/share/man/man5/GML/Widget/NumericInput.md b/Base/usr/share/man/man5/GML/Widget/NumericInput.md index dfa994d2261..89b1b23e4f3 100644 --- a/Base/usr/share/man/man5/GML/Widget/NumericInput.md +++ b/Base/usr/share/man/man5/GML/Widget/NumericInput.md @@ -14,6 +14,16 @@ Defines a GUI text box that only allows integers within a specified range. ```gml @GUI::NumericInput { - text: "23" + min: 0 + value: 42 + max: 9000 } ``` + +## Registered Properties + +| Property | Type | Possible values | Description | +|----------|-------|--------------------|----------------------------------------| +| min | int | Any 64 bit integer | Minimum number the input can be set to | +| max | int | Any 64 bit integer | Maximum number the input can be set to | +| value | int | Any 64 bit integer | Initial value |