Asp.net panel scrollbar properties

Definition and Usage

The ScrollBars property is used to set or return the position and visibility of scroll bars in the Panel control. Note: If you want to set the vertical scrollbar set the height of the panel to fixed height. If you want to set the horizontal scrollbar set the widht of the panel to fixed widht. If both , set both height and widht of the panel to fixed height/widht.

		
Some Content
 

Attributes

Attribute Description
value Specifies the which scrollbars are shown or not shown. Possible values:
  • None - Default. No scroll bars are shown
  • Horizontal - Only a horizontal scroll bar is shown
  • Vertical - Only a vertical scroll bar is shown
  • Both - Horizontal and vertical scroll bars are shown
  • Auto - Horizontal, vertical, or both scroll bars are shown if needed

The following example sets the ScrollBars property to "Vertical" in a Panel control:

 

		
Some content
blog comments powered by Disqus