File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Microsoft.Toolkit.Uwp.UI.Controls.Input/RichSuggestBox Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -313,6 +313,9 @@ public SolidColorBrush TokenForeground
313
313
/// <summary>
314
314
/// Gets or sets prefix characters to start a query.
315
315
/// </summary>
316
+ /// <remarks>
317
+ /// Prefix characters must be punctuations (must satisfy <see cref="char.IsPunctuation(char)"/> method).
318
+ /// </remarks>
316
319
public string Prefixes
317
320
{
318
321
get => ( string ) GetValue ( PrefixesProperty ) ;
Original file line number Diff line number Diff line change @@ -75,8 +75,7 @@ public RichSuggestBox()
75
75
}
76
76
77
77
/// <summary>
78
- /// Clear unused tokens and undo/redo history. <see cref="RichSuggestBox"/> saves all of previously committed tokens
79
- /// even when they are removed from the text. They have to be manually removed using this method.
78
+ /// Clear unused tokens and undo/redo history.
80
79
/// </summary>
81
80
public void ClearUndoRedoSuggestionHistory ( )
82
81
{
You can’t perform that action at this time.
0 commit comments