Browse Source

Fix some TextBox property summary docs (#13579)

pull/13596/head
robloo 2 years ago
committed by GitHub
parent
commit
ba7a764a03
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      src/Avalonia.Controls/TextBox.cs

5
src/Avalonia.Controls/TextBox.cs

@ -488,7 +488,8 @@ namespace Avalonia.Controls
}
/// <summary>
/// Gets or sets the maximum number of visible lines.
/// Gets or sets the maximum number of characters that the <see cref="TextBox"/> can accept.
/// This constraint only applies for manually entered (user-inputted) text.
/// </summary>
public int MaxLength
{
@ -497,7 +498,7 @@ namespace Avalonia.Controls
}
/// <summary>
/// Gets or sets the maximum number of lines the TextBox can contain
/// Gets or sets the maximum number of visible lines to size to.
/// </summary>
public int MaxLines
{

Loading…
Cancel
Save