VB.Net
What is the default range of horizontal scrollbar vb.net
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Shubham KumarPosted Jun 4, 2015, 1:45 AM
Rajeesh MenothPosted Jun 4, 2015, 1:21 AM
Contains the unit of measurement currently represented by the position of the scroll bar. This is an integer value and the constraints of the range are set by theMin and Max properties. The Value property can be edited at run or design time.
This has a default value of 1 and a maximum value of 32,767. The LargeChange Value determines the number of units the elevator box will move when the users drags the area between the box and the arrows
This determines the movement of the scroll bar according to the movement of the arrows at the top and bottom of the scroll bars. Normally, the Valueproperty decreases to the minimum value of Min and increases to the maximum value of the Max property. Again this is an integer value which has the default Value of 1 and a maximum value of 32,767.
This sets the minimum value for the scroll bars setting. This property will be used to set the minimum constraint for the Value property. The default value is 0. However, uses 2 bytes of storage, therefore can hold any value between -32,768 to +32,768.
This sets the maximum value for the scroll bars setting. This property will be used to set the maximum constraint for the Value property. The default value is 0. However, again uses 2 bytes of storage, therefore can hold any value between -32,768 to +32,768.
Ruchi MishraPosted Jun 4, 2015, 1:21 AM
Rajeesh MenothPosted Jun 4, 2015, 1:08 AM