diff --git a/xamarin-android/SfComboBox/ComboBox-Modes.md b/xamarin-android/SfComboBox/ComboBox-Modes.md index 5c503d9b..0eeb6252 100644 --- a/xamarin-android/SfComboBox/ComboBox-Modes.md +++ b/xamarin-android/SfComboBox/ComboBox-Modes.md @@ -23,7 +23,7 @@ comboBox.IsEditableMode = true; {% endtabs %} -![](images/editable.png) +![Editable mode in Xamarin.Android ComboBox.](images/editable.png) ## Non-editable combo box @@ -37,5 +37,5 @@ comboBox.IsEditableMode = false; {% endtabs %} -![](images/noneditable.png) +![Non-editable mode in Xamarin.Android ComboBox.](images/noneditable.png) diff --git a/xamarin-android/SfComboBox/Dealing-with-SuggestionBox.md b/xamarin-android/SfComboBox/Dealing-with-SuggestionBox.md index 32b40a54..f1eece4d 100644 --- a/xamarin-android/SfComboBox/Dealing-with-SuggestionBox.md +++ b/xamarin-android/SfComboBox/Dealing-with-SuggestionBox.md @@ -28,7 +28,7 @@ combobox.SuggestionBoxPlacement = SuggestionBoxPlacement.Bottom; {% endhighlight %} {% endtabs %} -![](images/bottom.png) +![Bottom placement of suggestin box.](images/bottom.png) ## SuggestionBox placement at top @@ -42,4 +42,4 @@ combobox.SuggestionBoxPlacement = SuggestionBoxPlacement.Top; {% endhighlight %} {% endtabs %} -![](images/top.png) \ No newline at end of file +![Suggetion box placement at the top.](images/top.png) \ No newline at end of file diff --git a/xamarin-android/SfComboBox/Filtering-Option.md b/xamarin-android/SfComboBox/Filtering-Option.md index cab274d8..6075f055 100644 --- a/xamarin-android/SfComboBox/Filtering-Option.md +++ b/xamarin-android/SfComboBox/Filtering-Option.md @@ -25,4 +25,4 @@ combobox.AllowFiltering = true; {% endtabs %} -![](images/filtering.png) \ No newline at end of file +![Filtering option of dropdown list.](images/filtering.png) \ No newline at end of file diff --git a/xamarin-android/SfComboBox/Overview.md b/xamarin-android/SfComboBox/Overview.md index 23df7bc2..47b7bc1d 100644 --- a/xamarin-android/SfComboBox/Overview.md +++ b/xamarin-android/SfComboBox/Overview.md @@ -11,7 +11,7 @@ documentation : ug The combo box is a text box component that allows users to type a value or choose an option from the list of predefined options. This has several out-of-the-box features such as data binding, filtering, and UI customization. -![](images/overview.png) +![Overview of Xamarin.Android ComboBox.](images/overview.png) ## Key features diff --git a/xamarin-android/SfComboBox/Suggestion-Display-Mode.md b/xamarin-android/SfComboBox/Suggestion-Display-Mode.md index bb5724be..35b76daa 100644 --- a/xamarin-android/SfComboBox/Suggestion-Display-Mode.md +++ b/xamarin-android/SfComboBox/Suggestion-Display-Mode.md @@ -61,5 +61,5 @@ comboBox.ComboBoxMode = ComboBoxMode.SuggestAppend; {% endtabs %} -![](images/comboboxmode.png) +![Dropdown display suggestion(combo mode).](images/comboboxmode.png) diff --git a/xamarin-android/SfComboBox/Various-Filter-Options-for-Suggestion.md b/xamarin-android/SfComboBox/Various-Filter-Options-for-Suggestion.md index d77a89e4..3fb8fca1 100644 --- a/xamarin-android/SfComboBox/Various-Filter-Options-for-Suggestion.md +++ b/xamarin-android/SfComboBox/Various-Filter-Options-for-Suggestion.md @@ -56,7 +56,7 @@ Displays the list of suggestions based on the starting letter. {% endtabs %} -![](images/startswith.png) +![Words that start with the input text (StartsWith).](images/startswith.png) ### Filter with character casing @@ -72,7 +72,7 @@ Displays the list of suggestions based on the starting letter with case sensitiv {% endtabs %} -![](images/startswithcasesensitive.png) +![Words that start with the input text (case-sensitive).](images/startswithcasesensitive.png) ## Words that contain the input text @@ -88,7 +88,7 @@ Displays the list of suggestions if the combo box list contains that words. {% endtabs %} -![](images/contains.png) +![Words that contain the input text (Contains).](images/contains.png) ### Filter with character casing @@ -104,9 +104,9 @@ Displays the list of suggestions if the combo box list contains that words with {% endtabs %} -![](images/containswithcasesensitive.png) +![Words that contain the input text (contains case-sensitive).](images/containswithcasesensitive.png) -## Words that equals to input text +## Words that equals to input text Displays the word that matches. @@ -120,7 +120,7 @@ Displays the word that matches. {% endtabs %} -![](images/equals.png) +![Words equal to the input text (Equals).](images/equals.png) ### Filter with character casing @@ -136,7 +136,7 @@ Displays the word that matches with case sensitive. {% endtabs %} -![](images/equalswithcasesensitive.png) +![Words equal to the input text (case-sensitive).](images/equalswithcasesensitive.png) ## Words that ends with input text @@ -152,7 +152,7 @@ Displays the list of suggestions based on the ending word. {% endtabs %} -![](images/endswith.png) +![Words that end with the input text (EndsWith).](images/endswith.png) ### Filter with character casing @@ -168,7 +168,7 @@ comboBox.SuggestionMode = SuggestionMode.EndsWithCaseSensitive; {% endtabs %} -![](images/endswithcasesensitive.png) +![Words that end with the input text (case-sensitive).](images/endswithcasesensitive.png) ### Custom filter @@ -184,7 +184,7 @@ comboBox.SuggestionMode = SuggestionMode.Custom; {% endtabs %} -![](images/customfilter.png) +![Custom filter applied to suggestions (example).](images/customfilter.png)