Interface IScrollBar
Defines an interface that provides all properties to configure a scrollbar.
Namespace: Syncfusion.UI.Xaml.Grids.ScrollAxis
Assembly: Syncfusion.GridCommon.WinUI.dll
Syntax
public interface IScrollBar : INotifyPropertyChanged
Properties
Enabled
Gets or sets a number that represents the current position of the scroll box on the scroll bar control.
Declaration
bool Enabled { get; set; }
Property Value
Type |
---|
System.Boolean |
LargeChange
Gets or sets a value to be added to or subtracted from the value of the property when the scroll box is moved a large distance.
Declaration
double LargeChange { get; set; }
Property Value
Type |
---|
System.Double |
Maximum
Gets or sets the upper limit of values of the scrollable range.
Declaration
double Maximum { get; set; }
Property Value
Type |
---|
System.Double |
Minimum
Gets or sets the lower limit of values of the scrollable range.
Declaration
double Minimum { get; set; }
Property Value
Type |
---|
System.Double |
SmallChange
Gets or sets the value to be added to or subtracted from the value of the property when the scroll box is moved a small distance.
Declaration
double SmallChange { get; set; }
Property Value
Type |
---|
System.Double |
Value
Gets or sets a numeric value that represents the current position of the scroll box on the scroll bar control.
Declaration
double Value { get; set; }
Property Value
Type |
---|
System.Double |