RichTextBox.VerticalScrollBarVisibility Property
Gets or sets the visibility of the vertical scroll bar.
Namespace: System.Windows.Controls
Assembly: System.Windows (in System.Windows.dll)
<RichTextBox VerticalScrollBarVisibility="scrollBarVisibilityValue"/>
XAML Values
Property Value
Type: System.Windows.Controls.ScrollBarVisibilityThe visibility of the vertical scroll bar. The default is Auto.
If the VerticalScrollBarVisibility property is set to Disabled, the RichTextBox does not scroll vertically.
The following XAML shows how to use the VerticalScrollBarVisibility property.
<RichTextBox Margin="20,20,0,0" Width="300" Height="50" AcceptsReturn="True" HorizontalScrollBarVisibility="Visible" VerticalScrollBarVisibility="Visible"> <Paragraph> A RichTextBox that demonstrates HorizontalScrollBarVisibility and VerticalScrollBarVisibility </Paragraph> </RichTextBox>
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Community Additions
Show: