Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 1.29 KB

textbox_acceptsreturn.md

File metadata and controls

34 lines (22 loc) · 1.29 KB
-api-id -api-type
P:Windows.UI.Xaml.Controls.TextBox.AcceptsReturn
winrt property

Windows.UI.Xaml.Controls.TextBox.AcceptsReturn

-description

Gets or sets the value that determines whether the text box allows and displays the newline or return characters.

-xaml-syntax

<TextBox AcceptsReturn="bool"/>

-property-value

true if the text box allows newline characters; otherwise, false. The default is false.

-remarks

If you change the AcceptsReturn property to true, text might be displayed differently due to text containing newline characters.

You can enable multi-line text in a TextBox control by using the AcceptsReturn property. Use the ScrollViewer.HorizontalScrollBarVisibility or ScrollViewer.VerticalScrollBarVisibility attached properties to change scrollbar behavior. By default the scrollbars appear when the layout system calculates that the text exceeds the dimensions of the viewport for the TextBox.

-examples

-see-also

Display and edit text, ScrollViewer