Scrollbar Control Properties in VB.NET
How to use the Scrollbar Control Properties in VB.NET?
Explanation
VScroll And HScroll Properties
Following table lists the
Scrollbar Control Properties,Events used commonly with the VScroll Bar and HScroll Bar
Control in Visual Basic.net 2008.
Properties:
Properties |
Description |
LargeChange |
Property used to set or get the value added or subtracted from the value property when the scroll bar itself is clicked. |
Maximum |
Property used to set or get upper limit of the scrollable range. |
Minimum |
Property used to set or get lower limit of the scrollable range. |
SmallChange |
Property used to get or set the value added to or subtracted from the value property when the user clicks an
arrow button. |
Value |
Property used to get or set value corresponding to current position of the scroll bar. |
Events:
Events |
Description |
Scroll |
Triggered when the scroll box is moved. |
ValueChanged |
Triggered when the Value property has changed, either by a scroll event or programmatically. |
Thus you can use the properties of scrollbar control in an effective way.