System.Windows.Forms.ScrollBar.ScrollBar C# (CSharp) Method

ScrollBar() public method

public ScrollBar ( ) : System.Drawing
return System.Drawing
		public ScrollBar ()
		{
			position = 0;
			minimum = 0;
			maximum = 100;
			large_change = 10;
			small_change = 1;

			
			base.TabStop = false;

			SetStyle (ControlStyles.UserPaint | ControlStyles.StandardClick
#if NET_2_0
				| ControlStyles.UseTextForAccessibility
#endif
				, false);
		}