gtk-sharpGtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details.GLib.InitiallyUnownedEncapsulates an adjustable bounded value.The Adjustment object represents a value with an associated and bound, together with a , , and a .The Adjustment object does not update the value itself. Instead it is left up to the owner of the Adjustment to control the value. The owner of the Adjustment typically calls the and methods after changing the value or its bounds, respectively. This results in the emission of the or events respectively.An Adjustment is used within several widgets, including , , and (which is a base class for , , , and ).ConstructorDefault constructor.Constructor
Pointer to the C object.
Internal constructorThis is an internal constructor, and should not be used by user code.Constructor
The initial value.
The minimum value.
The maximum value.
The increment to use to make minor changes to the value.
The increment to use to make major changes to the value.
The page size. In a this is the size of the area that is currently visible.
Creates an Adjustment with the specified value and bounds.MethodSystem.VoidFires the event.This method should be called manually after changing properties to notify all listening objects that one or more of the Adjustment's bounds have changed.EventGLib.Signal("changed")System.EventHandlerThis event is raised when is called.If the Adjustment's properties change, (such as , etc.), it is up to whichever class changes the values to call to ensure this event is raised.MethodSystem.VoidFires the event.This method should be called manually after changing properties to notify all listening objects that the Adjustment's has changed.MethodSystem.Void
The lower value of the new range.
The upper value of the new range.
Used to inform the Adjustment's view that a new visible range should be displayed.
This method should be used to set the currently visible range to (, ).?If necessary, the current is changed to ensure that it is visible within the new scope.
If the specified range is larger than the , then only the start of it will make up the new "current page".
The event will be raised if the changes as a result of this method. must be called manually if the event should be raised.
MethodSystem.Void
To be added.
To be added.
To be added.
To be added.
To be added.
To be added.
To be added.To be added.PropertyGLib.GTypeGType Property.a Returns the native value for .PropertyGLib.Property("lower")System.DoubleRetrieve the lower bound of this Adjustment.a The minimum possible value that is currently allowed.MethodGLib.DefaultSignalHandler(ConnectionMethod="OverrideChanged", Type=typeof(Gtk.Adjustment))System.VoidVirtual method to override the event default handler.Override this method to change the default event handling for the event. MethodGLib.DefaultSignalHandler(ConnectionMethod="OverrideValueChanged", Type=typeof(Gtk.Adjustment))System.VoidVirtual method for event default handling.Override this method to change the default event handling for the event.PropertyGLib.Property("page-increment")System.DoubleManage the increment used to make major changes to the value.The current PageIncrement.The usefulness of this value is entirely dependent upon the context in whic hthe Adjustment is used.PropertyGLib.Property("page-size")System.DoubleManage the size of a 'page'.The current size of pages in this Adjustment.In a this is the size of the area which is currently visible.MethodSystem.Void
The minimum value.
The maximum value.
The increment to use to make minor changes to the value.
The increment to use to make major changes to the value.
The page size. In a this is the size of the area that is currently visible.
Sets all the properties of the Adjustment at the same time.When updating the values and properties of an Adjustment, remember to call the and/or methods to ensure the correct events are raised.PropertyGLib.Property("step-increment")System.DoubleThe increment to use to make minor changes to the value.a In a this increment is used when the mouse is clicked on the arrows at the top and bottom of the , to scroll by a small amount.PropertyGLib.Property("upper")System.DoubleRetrieve the upper bound of this Adjustment.a The maximum possible value that is currently allowed.PropertyGLib.Property("value")System.DoubleManage the current .The current value of this adjustment.If you set this property, you should manually call so that all listening objects are notified of the change.EventGLib.Signal("value-changed")System.EventHandlerThis event is raised when is called.This event can be handled to be notified of changes to the Adjustment's value. However, this relies on all objects that change the calling .