diff --git a/doc/classes/SpinBox.xml b/doc/classes/SpinBox.xml index 8e2e2f1baa4..3388af2dd03 100644 --- a/doc/classes/SpinBox.xml +++ b/doc/classes/SpinBox.xml @@ -5,6 +5,16 @@ SpinBox is a numerical input text field. It allows entering integers and floats. + [b]Example:[/b] + [codeblock] + var spin_box = SpinBox.new() + add_child(spin_box) + var line_edit = spin_box.get_line_edit() + line_edit.context_menu_enabled = false + spin_box.align = LineEdit.ALIGN_RIGHT + [/codeblock] + The above code will create a [SpinBox], disable context menu on it and set the text alignment to right. + See [Range] class for more options over the [SpinBox]. @@ -13,23 +23,29 @@ + Returns the [LineEdit] instance from this [SpinBox]. You can use it to access properties and methods of [LineEdit]. + Sets the text alignment of the [SpinBox]. + If [code]true[/code], the [SpinBox] will be editable. Otherwise, it will be read only. + Adds the specified [code]prefix[/code] string before the numerical value of the [SpinBox]. + Adds the specified [code]prefix[/code] string after the numerical value of the [SpinBox]. + Sets a custom [Texture] for up and down arrows of the [SpinBox].