
Gets or sets a value that indicates whether a horizontal scroll bar is shown. The property's value is of the type System.Windows.Controls.ScrollBarVisibility. This is a dependency property.
[C#]
public ScrollBarVisibility HorizontalScrollBarVisibility { get; set; }
[Visual Basic]
Public Property HorizontalScrollBarVisibility() As ScrollBarVisibility
| Value | Description | |
| Auto | A horizontal scroll bar is shown when the document is not completely visible in the horizontal direction. | |
| Disabled | A horizontal scroll bar is not shown even if the document is not completely visible. | |
| Hidden | Same as Disabled. | |
| Visible | Same as Auto. |