pub fn make_spinbox_range(
    parent: &impl TkWidget,
    from: f64,
    to: f64,
    increment: f64
) -> TkSpinboxRange
Expand description

Creates an instance of a numeric-spinbox widget in given parent.

This spinbox is used to select between a range of numbers, defined as [from, to]. The increment specifies how much the number changes as the up/down arrow is clicked.