Gtk.Adjustment.prototype.set_lower
function set_lower(lower:Number):void {
// Gjs wrapper for gtk_adjustment_set_lower()
}Sets the minimum value of the adjustment.
When setting multiple adjustment properties via their individual setters, multiple Gtk.changed signals will be emitted. However, since the emission of the Gtk.changed signal is tied to the emission of the GObject.notify signals of the changed properties, it's possible to compress the Gtk.changed signals into one by calling GObject.freeze_notify and GObject.thaw_notify around the calls to the individual setters.
Alternatively, using a single GObject.set for all the properties to change, or using Gtk.Adjustment.prototype.configure has the same effect of compressing Gtk.changed emissions.
Since 2.14
- lower
the new minimum value