From c08d40ea580ba1fbb12d1ea40e53756a53cd7f8b Mon Sep 17 00:00:00 2001 From: shivaniramakrishnan14 Date: Tue, 31 May 2022 07:20:36 +0530 Subject: [PATCH 1/8] Update Code Changes For First Occurrence --- .../SfAutoComplete/highlighting-matched-text.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/xamarin-android/SfAutoComplete/highlighting-matched-text.md b/xamarin-android/SfAutoComplete/highlighting-matched-text.md index 73da2cdc5..9d00feb37 100644 --- a/xamarin-android/SfAutoComplete/highlighting-matched-text.md +++ b/xamarin-android/SfAutoComplete/highlighting-matched-text.md @@ -30,10 +30,9 @@ It highlights the first position of the matching characters in the suggestion li {% highlight C# %} -countryAutoComplete.SuggestionMode=SuggestionMode.StartsWith; -countryAutoComplete.TextHighlightMode=OccurrenceMode.FirstOccurrence; -countryNameAutoComplete.HighlightedTextColor = Color.Red; -countryNameAutoComplete.HighlightedTextFontAttributes = HighlightedTextFontAttributes.Bold; +countryAutoComplete.TextHighlightMode = OccurrenceMode.FirstOccurrence; +countryAutoComplete.HighlightedTextColor = Color.Blue; +countryAutoComplete.HighlightedTextFontTypeFace = TypefaceStyle.Bold; {% endhighlight %} From d8229821bb9e03ed3dc24c7d958911842fd414b0 Mon Sep 17 00:00:00 2001 From: shivaniramakrishnan14 Date: Tue, 31 May 2022 14:48:45 +0530 Subject: [PATCH 2/8] Adding some content changes --- .../SfAutoComplete/highlighting-matched-text.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/xamarin-android/SfAutoComplete/highlighting-matched-text.md b/xamarin-android/SfAutoComplete/highlighting-matched-text.md index 9d00feb37..5eb6bbc1b 100644 --- a/xamarin-android/SfAutoComplete/highlighting-matched-text.md +++ b/xamarin-android/SfAutoComplete/highlighting-matched-text.md @@ -7,6 +7,12 @@ control : SfAutoComplete documentation : ug --- +{% banner %} + +{:.gradient_m} + +{% col_2_equal %} + # Highlighting matched text Highlight matching characters in a suggestion list to pick an item with more clarity. There are two ways to highlight the matching text: @@ -41,7 +47,7 @@ countryAutoComplete.HighlightedTextFontTypeFace = TypefaceStyle.Bold; N> The default Color of HighlightedTextColor is Red. The default FontAttribute of HighlightedTextFontAttributes is None. -![](images/FirstOccurrence.png) +![First Occurrence AutoComplete Image](images/FirstOccurrence.png) ## Multiple Occurrence @@ -60,7 +66,7 @@ countryNameAutoComplete.HighlightedTextFontAttributes = HighlightedTextFontAttri {% endtabs %} -![](images/MultipleOccurrence.png) +![Multiple Occurrence AutoComplete Image](images/MultipleOccurrence.png) From b0f908fe2e259edba3f55b8d7c11572e547fa1aa Mon Sep 17 00:00:00 2001 From: shivaniramakrishnan14 Date: Tue, 31 May 2022 18:05:49 +0530 Subject: [PATCH 3/8] Changes in title and description --- xamarin-android/SfAutoComplete/highlighting-matched-text.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xamarin-android/SfAutoComplete/highlighting-matched-text.md b/xamarin-android/SfAutoComplete/highlighting-matched-text.md index 5eb6bbc1b..9c15984e0 100644 --- a/xamarin-android/SfAutoComplete/highlighting-matched-text.md +++ b/xamarin-android/SfAutoComplete/highlighting-matched-text.md @@ -1,7 +1,7 @@ --- layout : post -title : MatchHighlighting in Syncfusion SfAutoComplete control for Xamarin.Android -description : Learn how to highlight the matched text in SfAutoComplete +title: MatchHighlighting in Syncfusion SfAutoComplete control for Xamarin.Android +description: Learn how to highlight the matched text in SfAutoComplete platform : Xamarin.Android control : SfAutoComplete documentation : ug From 3e676d0a4d5192fd187109f8f2e52f56881b4a28 Mon Sep 17 00:00:00 2001 From: shivaniramakrishnan14 Date: Wed, 1 Jun 2022 12:24:21 +0530 Subject: [PATCH 4/8] Update Title and Description --- xamarin-android/SfAutoComplete/highlighting-matched-text.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xamarin-android/SfAutoComplete/highlighting-matched-text.md b/xamarin-android/SfAutoComplete/highlighting-matched-text.md index 9c15984e0..ccb6c7004 100644 --- a/xamarin-android/SfAutoComplete/highlighting-matched-text.md +++ b/xamarin-android/SfAutoComplete/highlighting-matched-text.md @@ -1,7 +1,7 @@ --- layout : post -title: MatchHighlighting in Syncfusion SfAutoComplete control for Xamarin.Android -description: Learn how to highlight the matched text in SfAutoComplete +title: MatchHighlighting the text in Syncfusion SfAutoComplete control for Xamarin.Android +description: Learn on how to highlight the matched text in SfAutoComplete for Xamarin.Android and also understood the highlight the matching characters in suggestion list platform : Xamarin.Android control : SfAutoComplete documentation : ug From b0ba54b315fba39beae2c7f8ddab17adf46391e0 Mon Sep 17 00:00:00 2001 From: shivaniramakrishnan14 Date: Wed, 1 Jun 2022 12:28:36 +0530 Subject: [PATCH 5/8] Made Title to small characters --- xamarin-android/SfAutoComplete/highlighting-matched-text.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xamarin-android/SfAutoComplete/highlighting-matched-text.md b/xamarin-android/SfAutoComplete/highlighting-matched-text.md index ccb6c7004..7e74920bb 100644 --- a/xamarin-android/SfAutoComplete/highlighting-matched-text.md +++ b/xamarin-android/SfAutoComplete/highlighting-matched-text.md @@ -1,6 +1,6 @@ --- layout : post -title: MatchHighlighting the text in Syncfusion SfAutoComplete control for Xamarin.Android +title: MatchHighlighting text in Syncfusion SfAutoComplete control. description: Learn on how to highlight the matched text in SfAutoComplete for Xamarin.Android and also understood the highlight the matching characters in suggestion list platform : Xamarin.Android control : SfAutoComplete From 52364fa05a7f0183e01847653b4a9a950d3a7ce6 Mon Sep 17 00:00:00 2001 From: Choza-rajan <92723643+Choza-rajan@users.noreply.github.com> Date: Sat, 3 Jun 2023 16:47:18 +0530 Subject: [PATCH 6/8] Update highlighting-matched-text.md --- .../SfAutoComplete/highlighting-matched-text.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/xamarin-android/SfAutoComplete/highlighting-matched-text.md b/xamarin-android/SfAutoComplete/highlighting-matched-text.md index 7e74920bb..3ce028bee 100644 --- a/xamarin-android/SfAutoComplete/highlighting-matched-text.md +++ b/xamarin-android/SfAutoComplete/highlighting-matched-text.md @@ -26,7 +26,7 @@ The text highlight can be indicated with various customizing styles by enabling * HighlightedTextColor - sets the color of the highlighted text for differentiating the highlighted characters. -* HighlightedTextFontAttributes - sets the FontAttributes of the highlighted text. +* HighlightedTextFontTypeFace - sets the FontAttributes of the highlighted text. ## First Occurrence @@ -36,6 +36,7 @@ It highlights the first position of the matching characters in the suggestion li {% highlight C# %} +countryAutoComplete.SuggestionMode = SuggestionMode.StartsWith; countryAutoComplete.TextHighlightMode = OccurrenceMode.FirstOccurrence; countryAutoComplete.HighlightedTextColor = Color.Blue; countryAutoComplete.HighlightedTextFontTypeFace = TypefaceStyle.Bold; @@ -45,7 +46,7 @@ countryAutoComplete.HighlightedTextFontTypeFace = TypefaceStyle.Bold; {% endtabs %} N> The default Color of HighlightedTextColor is Red. - The default FontAttribute of HighlightedTextFontAttributes is None. + The default FontAttribute of HighlightedTextFontTypeFace is None. ![First Occurrence AutoComplete Image](images/FirstOccurrence.png) @@ -57,10 +58,10 @@ It highlights the matching character that are present everywhere in the suggesti {% highlight C# %} -countryAutoComplete.SuggestionMode=SuggestionMode.Contains; -countryAutoComplete.TextHighlightMode=OccurrenceMode.MultipleOccurrence; +countryAutoComplete.SuggestionMode = SuggestionMode.Contains; +countryAutoComplete.TextHighlightMode = OccurrenceMode.MultipleOccurrence; countryNameAutoComplete.HighlightedTextColor = Color.Red; -countryNameAutoComplete.HighlightedTextFontAttributes = HighlightedTextFontAttributes.Bold; +countryNameAutoComplete.HighlightedTextFontTypeFace = TypefaceStyle.Bold; {% endhighlight %} From bb0c20aafcccc7a58f20ce0533ade059c4a537d3 Mon Sep 17 00:00:00 2001 From: Deepak Raj Sundar Date: Wed, 14 Jun 2023 15:05:23 +0530 Subject: [PATCH 7/8] Added the release notes MD file and corresponding node entry in the TOC.html file for the 2023 Volume 2 Main Release - June 20, 2023 --- xamarin-android-toc.html | 2 +- xamarin-android/Release-Notes/v22.1.34.md | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 xamarin-android/Release-Notes/v22.1.34.md diff --git a/xamarin-android-toc.html b/xamarin-android-toc.html index 6d34541f9..3467c345a 100644 --- a/xamarin-android-toc.html +++ b/xamarin-android-toc.html @@ -823,7 +823,7 @@
  • Release Notes -