diff --git a/Xamarin/AutoComplete/Accessibility.md b/Xamarin/AutoComplete/Accessibility.md
index a80e79f23..2e4aa39d7 100644
--- a/Xamarin/AutoComplete/Accessibility.md
+++ b/Xamarin/AutoComplete/Accessibility.md
@@ -11,12 +11,20 @@ documentation: ug
## AutomationId
-The [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control has built-in `AutomationId` for inner elements. The `AutomationId` API allows the automation framework to find and interact with the inner elements of the SfAutoComplete control. To keep unique AutomationId, these inner elements' AutomationIds are updated based on the control's `AutomationId`.
+The [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control provides built-in `AutomationId` support for its inner elements. This feature allows automation frameworks to find and interact with specific components within the control. To maintain uniqueness, the AutomationIds of inner elements are dynamically updated based on the control's own `AutomationId`.
-For example, If you set SfAutoComplete's `AutomationId` as "Employee Autocomplete", then the Automation framework will interact with the Token Close Button as "Employee Autocomplete Frank Token Close Button".
-
-The following screenshot illustrates the AutomationIds of inner elements. The Automation framework will interact with the dropdown for scrolling the items as "Employee Autocomplete Dropdown". You can also interact with the elements inside the HeaderView and FooterView with the element's AutomationId. The Automation framework will not interact with the Input Clear Button when the [`MultiSelectMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_MultiSelectMode) is [`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.MultiSelectMode.html#Syncfusion_SfAutoComplete_XForms_MultiSelectMode_None) and [`Delimiter`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.MultiSelectMode.html#Syncfusion_SfAutoComplete_XForms_MultiSelectMode_Delimiter) mode.
+For example, if you set the SfAutoComplete's `AutomationId` as "Employee Autocomplete", the automation framework will interact with a token close button as "Employee Autocomplete Frank Token Close Button".
+The following screenshot illustrates the AutomationIds of inner elements:

-N> You can refer to our [Xamarin AutoComplete](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete) feature tour page for its groundbreaking feature representations. You can also explore our [Xamarin.Forms AutoComplete example](https://github.com/syncfusion/xamarin-demos/tree/master/Forms/AutoComplete) to knows the functionalities of each feature.
\ No newline at end of file
+The automation framework will interact with:
+- The dropdown for scrolling items as "Employee Autocomplete Dropdown"
+- Elements inside HeaderView and FooterView using their respective AutomationIds
+
+**Note:** The automation framework will not interact with the Input Clear Button when the [`MultiSelectMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_MultiSelectMode) is set to either [`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.MultiSelectMode.html#Syncfusion_SfAutoComplete_XForms_MultiSelectMode_None) or [`Delimiter`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.MultiSelectMode.html#Syncfusion_SfAutoComplete_XForms_MultiSelectMode_Delimiter) mode.
+
+## See Also
+
+* [Xamarin AutoComplete Features Overview](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete)
+* [Xamarin.Forms AutoComplete Examples](https://github.com/syncfusion/xamarin-demos/tree/master/Forms/AutoComplete)
diff --git a/Xamarin/AutoComplete/AutoComplete-Filtering-Options.md b/Xamarin/AutoComplete/AutoComplete-Filtering-Options.md
index 6b4bafe18..88afa570a 100644
--- a/Xamarin/AutoComplete/AutoComplete-Filtering-Options.md
+++ b/Xamarin/AutoComplete/AutoComplete-Filtering-Options.md
@@ -7,12 +7,13 @@ control: AutoComplete
documentation: ug
---
-# AutoComplete Filtering Options - Xamarin AutoComplete (SfAutoComplete)
+# AutoComplete Filtering Options in Xamarin (SfAutoComplete)
-## AutoComplete filtering options in Xamarin SfAutoComplete
+## Overview
-The phenomenon of string comparison for filtering suggestions can be changed using the [`SuggestionMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SuggestionMode) property. The default filtering strategy is [`“StartsWith”`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionMode.html#Syncfusion_SfAutoComplete_XForms_SuggestionMode_StartsWith) and it is case insensitive. The available filtering modes are
+The [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control provides various filtering options through the [`SuggestionMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SuggestionMode) property. This property determines how strings are compared when filtering suggestions. The default filtering strategy is [`StartsWith`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionMode.html#Syncfusion_SfAutoComplete_XForms_SuggestionMode_StartsWith), which is case-insensitive.
+The available filtering modes are:
* [`StartsWith`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionMode.html#Syncfusion_SfAutoComplete_XForms_SuggestionMode_StartsWith)
* [`StartsWithCaseSensitive`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionMode.html#Syncfusion_SfAutoComplete_XForms_SuggestionMode_StartsWithCaseSensitive)
@@ -31,7 +32,7 @@ The phenomenon of string comparison for filtering suggestions can be changed usi
* [`Custom`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionMode.html#Syncfusion_SfAutoComplete_XForms_SuggestionMode_Custom)
-## Filtering Words that Starts with Input Text
+## Filtering Words that Start with Input Text
Displays all the matches that starts with the typed characters in control. This strategy is case in-sensitive.
@@ -124,7 +125,7 @@ namespace AutocompleteSample

-### Filtering Words that Starts with Input Text - CaseSensitive
+## Filtering Words that Start with Input Text - Case Sensitive
Displays all the matches that starts with the typed characters in control. This strategy is case sensitive.
@@ -217,7 +218,7 @@ namespace AutocompleteSample

-## Filtering Words that Contains the Input Text
+## Filtering Words that Contain the Input Text
Displays all the matches that contains the typed characters in control. This strategy is case in-sensitive.
@@ -310,7 +311,7 @@ namespace AutocompleteSample

-### Filtering Words that Contains the Input Text - CaseSensitive
+## Filtering Words that Contain the Input Text - Case Sensitive
Displays all the matches that contains the typed characters in control. This strategy is case sensitive.
@@ -403,7 +404,7 @@ namespace AutocompleteSample

-## Filtering Words that Equals the Input Text
+## Filtering Words that Equal the Input Text
Displays all the words that completely matches with the typed characters in control. This strategy is case in-sensitive.
@@ -494,7 +495,7 @@ namespace AutocompleteSample
{% endtabs %}
-### Filtering Words that Equals the Input Text - CaseSensitive
+## Filtering Words that Equal the Input Text - Case Sensitive
Displays all the words that completely matches with the typed characters in control. This strategy is case sensitive.
diff --git a/Xamarin/AutoComplete/AutoComplete-Modes.md b/Xamarin/AutoComplete/AutoComplete-Modes.md
index acd34eaf6..47a3c2417 100644
--- a/Xamarin/AutoComplete/AutoComplete-Modes.md
+++ b/Xamarin/AutoComplete/AutoComplete-Modes.md
@@ -9,22 +9,18 @@ documentation: ug
# AutoComplete Modes in Xamarin AutoComplete (SfAutoComplete)
-## AutoComplete Modes in Xamarin SfAutoComplete
+## Overview
-AutoComplete provides three different ways to display the filtered suggestions. They are
+The [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control provides three different ways to display filtered suggestions through the [`AutoCompleteMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_AutoCompleteMode) property:
+* [`Suggest`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.AutoCompleteMode.html#Syncfusion_SfAutoComplete_XForms_AutoCompleteMode_Suggest) - Displays suggestions in a dropdown list
+* [`Append`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.AutoCompleteMode.html#Syncfusion_SfAutoComplete_XForms_AutoCompleteMode_Append) - Appends the first suggestion to the text
+* [`SuggestAppend`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.AutoCompleteMode.html#Syncfusion_SfAutoComplete_XForms_AutoCompleteMode_SuggestAppend) - Combines both Suggest and Append modes
-* [`Suggest`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.AutoCompleteMode.html#Syncfusion_SfAutoComplete_XForms_AutoCompleteMode_Suggest) - displaying suggestion in drop down list
+The default value is [`Suggest`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.AutoCompleteMode.html#Syncfusion_SfAutoComplete_XForms_AutoCompleteMode_Suggest).
-* [`Append`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.AutoCompleteMode.html#Syncfusion_SfAutoComplete_XForms_AutoCompleteMode_Append) - appending the first suggestion to text
-
-* [`SuggestAppend`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.AutoCompleteMode.html#Syncfusion_SfAutoComplete_XForms_AutoCompleteMode_SuggestAppend) - Both of these
-
-[`AutoCompleteMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_AutoCompleteMode) property is used to choose the suggestion display mode in SfAutoComplete control. The default value is [`Suggest`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.AutoCompleteMode.html#Syncfusion_SfAutoComplete_XForms_AutoCompleteMode_Suggest).
-
-## Suggesting Choices in List
-
-The filtered suggestions are displayed in a drop down list. User can pick an item from the list.
+## Suggest Mode
+In Suggest mode, filtered suggestions are displayed in a dropdown list, allowing users to select an item from the list.
{% tabs %}
{% highlight xaml %}
@@ -118,9 +114,8 @@ namespace AutocompleteSample

-## Appending Suggestion to Text
-
-The first item in filtered suggestions is appended to [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) text. In this mode, drop down remains closed.
+## Append Mode
+In Append mode, the first item from the filtered suggestions is automatically appended to the text in the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control. The dropdown list remains closed in this mode.
{% tabs %}
@@ -213,10 +208,13 @@ namespace AutocompleteSample

-## Suggesting Choices and Appending Suggestions to Text
+## SuggestAppend Mode
-The text is appended to the first matched item in the suggestions collection and filtered suggestions are displayed in a drop down list. The user can pick from a list directly or use up and down keys for browsing the list.
-
+In SuggestAppend mode, the control combines both Suggest and Append behaviors:
+- The first matched item is appended to the text
+- Filtered suggestions are displayed in a dropdown list
+
+Users can either select an item directly from the list or use the up and down arrow keys to navigate through the suggestions.
{% tabs %}
{% highlight xaml %}
@@ -309,4 +307,7 @@ namespace AutocompleteSample

-N> You can refer to our [Xamarin AutoComplete](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete) feature tour page for its groundbreaking feature representations. You can also explore our [Xamarin.Forms AutoComplete example](https://github.com/syncfusion/xamarin-demos/tree/master/Forms/AutoComplete) to knows the functionalities of each feature.
\ No newline at end of file
+## See Also
+
+* [Xamarin AutoComplete Features Overview](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete)
+* [Xamarin.Forms AutoComplete Examples](https://github.com/syncfusion/xamarin-demos/tree/master/Forms/AutoComplete)
diff --git a/Xamarin/AutoComplete/AutoSizing.md b/Xamarin/AutoComplete/AutoSizing.md
index 9ab959b29..47f6b43e6 100644
--- a/Xamarin/AutoComplete/AutoSizing.md
+++ b/Xamarin/AutoComplete/AutoSizing.md
@@ -1,18 +1,33 @@
---
layout: post
-title: AutoSizing in Syncfusion SfAutoComplete control in Xamarin.Forms
-description: Learn how to enable the AutoSizing feature in SfAutoComplete control to extend the layout based on the input token size available.
-platform: Xamarin
+title: AutoSizing in Xamarin AutoComplete Control | Syncfusion
+description: Learn how to enable the AutoSizing feature in Syncfusion Xamarin AutoComplete (SfAutoComplete) control to dynamically resize based on token content.
+platform: xamarin
control: SfAutoComplete
documentation: ug
---
-# Enabling the AutoSizing API
+# AutoSizing in Xamarin AutoComplete (SfAutoComplete)
-AutoSizing can be enabled in [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control so that the control will extend its layout based on the token size.
+## Overview
-[`EnableAutoSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_EnableAutoSize) property is used to enable the AutoSizing in [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control. To enable the API, you need to set the [`MultiSelectMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_MultiSelectMode) as [`Token`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.MultiSelectMode.html#Syncfusion_SfAutoComplete_XForms_MultiSelectMode_Token) and [`TokensWrapMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_TokensWrapMode) as [`Wrap`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokensWrapMode.html#Syncfusion_SfAutoComplete_XForms_TokensWrapMode_Wrap). The default value of [`EnableAutoSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_EnableAutoSize) is false.
+The [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control provides an AutoSizing feature that allows the control to dynamically resize its layout based on the size of the selected tokens. This feature is particularly useful when working with multiple selections in token mode.
+## Enabling AutoSizing
+To enable AutoSizing in the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control, set the [`EnableAutoSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_EnableAutoSize) property to `true`.
+
+### Prerequisites
+
+For AutoSizing to work properly, you must also configure the following properties:
+
+1. Set [`MultiSelectMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_MultiSelectMode) to [`Token`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.MultiSelectMode.html#Syncfusion_SfAutoComplete_XForms_MultiSelectMode_Token)
+2. Set [`TokensWrapMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_TokensWrapMode) to [`Wrap`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokensWrapMode.html#Syncfusion_SfAutoComplete_XForms_TokensWrapMode_Wrap)
+
+The default value of [`EnableAutoSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_EnableAutoSize) is `false`.
+
+## Example
+
+The following example demonstrates how to enable AutoSizing in the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control:
{% tabs %}
{% highlight xaml %}
@@ -91,4 +106,8 @@ namespace LayoutsExample

-N> You can refer to our [Xamarin AutoComplete](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete) feature tour page for its groundbreaking feature representations. You can also explore our [Xamarin.Forms AutoComplete example](https://github.com/syncfusion/xamarin-demos/tree/master/Forms/AutoComplete) to knows the functionalities of each feature.
\ No newline at end of file
+## See Also
+
+* [Xamarin AutoComplete Features Overview](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete)
+* [Xamarin.Forms AutoComplete Examples](https://github.com/syncfusion/xamarin-demos/tree/master/Forms/AutoComplete)
+* [Working with Tokens in AutoComplete](https://help.syncfusion.com/xamarin/autocomplete/working-with-token)
diff --git a/Xamarin/AutoComplete/Customizing-AutoComplete.md b/Xamarin/AutoComplete/Customizing-AutoComplete.md
index d85668667..8c212d883 100644
--- a/Xamarin/AutoComplete/Customizing-AutoComplete.md
+++ b/Xamarin/AutoComplete/Customizing-AutoComplete.md
@@ -11,11 +11,11 @@ documentation: ug
## Customizing AutoComplete in Xamarin AutoComplete (SfAutoComplete)
-AutoComplete provides user friendly customizing options for both entry part and drop down part. In this section, customizing entire AutoComplete control is explained.
+AutoComplete provides user-friendly customization options for both the entry part and drop-down part. In this section, customizing the entire AutoComplete control is explained.
## Customizing the Entry
-[`TextColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_TextColor), [`TextSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_TextSize), [`FontAttributes`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_FontAttributes), [`FontFamily`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_FontFamily) and [`BorderColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_BorderColor) are the properties used to customize the foreground color, font size, font attribute, font family and border color of the entry part.
+[`TextColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_TextColor), [`TextSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_TextSize), [`FontAttributes`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_FontAttributes), [`FontFamily`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_FontFamily), and [`BorderColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_BorderColor) are the properties used to customize the foreground color, font size, font attribute, font family, and border color of the entry part.
{% tabs %}
@@ -184,7 +184,7 @@ namespace AutocompleteSample
{% endtabs %}
-Following code contains the the ViewModel properties.
+Following code contains the ViewModel properties.
{% tabs %}
@@ -241,7 +241,7 @@ Following code contains the the ViewModel properties.
### Changing suggestion item height
-[`DropDownItemHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DropDownItemHeight) property is used to modify the height of suggestion items in drop down list. The code example is given below:
+[`DropDownItemHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DropDownItemHeight) property is used to modify the height of suggestion items in the drop-down list. The code example is given below:
{% tabs %}
@@ -326,7 +326,7 @@ namespace AutocompleteSample
### Changing suggestion box corner radius
-The [`DropDownCornerRadius`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DropDownCornerRadius) property is used to modify the corner radius of suggestion box. The following code example demonstrates how to change the suggestion box corner radius.
+The [`DropDownCornerRadius`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DropDownCornerRadius) property is used to modify the corner radius of the suggestion box. The following code example demonstrates how to change the suggestion box corner radius.
{% tabs %}
@@ -411,7 +411,7 @@ namespace AutocompleteSample
### Changing suggestion box background color
-The [`DropDownBackgroundColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DropDownBackgroundColor) property is used to modify the background color of suggestion box. The following code example demonstrates how to change the suggestion box background color.
+The [`DropDownBackgroundColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DropDownBackgroundColor) property is used to modify the background color of the suggestion box. The following code example demonstrates how to change the suggestion box background color.
{% tabs %}
@@ -497,7 +497,7 @@ namespace AutocompleteSample
### Changing the border color of suggestion box
-The [`DropDownBorderColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DropDownBorderColor) property is used to change the border color of suggestion box. The following code example demonstrates how to change the border color of suggestion box.
+The [`DropDownBorderColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DropDownBorderColor) property is used to change the border color of the suggestion box. The following code example demonstrates how to change the border color of the suggestion box.
{% tabs %}
diff --git a/Xamarin/AutoComplete/DataTemplateSelector.md b/Xamarin/AutoComplete/DataTemplateSelector.md
index 20f670702..793932276 100644
--- a/Xamarin/AutoComplete/DataTemplateSelector.md
+++ b/Xamarin/AutoComplete/DataTemplateSelector.md
@@ -1,7 +1,7 @@
---
layout: post
-title: DataTemplateSelector of Syncfusion Xamarin.Forms SfAutoComplete
-description: This section will discribes about how to use a DataTemplateSelctor for Xamarin.Forms SfAutoComplete
+title: DataTemplateSelector in Xamarin.Forms SfAutoComplete | Syncfusion
+description: This section describes how to use a DataTemplateSelector for Xamarin.Forms SfAutoComplete control
platform: Xamarin
control: SfAutoComplete
documentation: ug
@@ -9,7 +9,7 @@ documentation: ug
# DataTemplateSelector in Xamarin AutoComplete (SfAutoComplete)
-[`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) supports DataTemplateSelector, which is used to choose a DataTemplate based on data object.
+The [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control supports DataTemplateSelector, which allows you to choose a DataTemplate based on the data object. This provides a powerful way to customize the appearance of items in the suggestion list based on specific conditions.
{% tabs %}
@@ -115,9 +115,9 @@ namespace AutocompleteSample
{% endtabs %}
-## Create and Initialize Business Models
+## Creating and Initializing Business Models
-Define a simple model class MobileDetail with fields IsAvailableInStock, Mobile and populate mobile detail in ViewModel.
+Define a simple model class `MobileDetail` with properties `IsAvailableInStock` and `Mobile`, then populate mobile details in the ViewModel:
{% tabs %}
@@ -157,12 +157,9 @@ namespace AutocompleteSample
{% endtabs %}
+## Implementing the OnSelectTemplate Method
-## OnSelectTemplate
-
-The OnSelectTemplate is an overridden method to return a particular DataTemplate. The following code sample demonstrates how to use the OnSelectTemplate method.
-
-
+The `OnSelectTemplate` is an overridden method that returns a specific DataTemplate based on conditions. In this example, we're using the `IsAvailableInStock` property to determine which template to use:
{% tabs %}
{% highlight C# %}
@@ -189,13 +186,17 @@ namespace AutocompleteSample
{% endtabs %}
-The following screenshot illustrates the output of above code.
+The following screenshot illustrates the output of the above code:

-We have attached sample for reference. You can download the sample from the following link.
+We have attached a sample for reference. You can download the sample from the following link:
Sample Link: [SfAutoComplete_DataTemplateSelector](https://github.com/SyncfusionExamples/autocomplete-datatemplate-selector)
-N> You can refer to our [Xamarin AutoComplete](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete) feature tour page for its groundbreaking feature representations. You can also explore our [Xamarin.Forms AutoComplete example](https://github.com/syncfusion/xamarin-demos/tree/master/Forms/AutoComplete) to knows the functionalities of each feature.
\ No newline at end of file
+## See Also
+
+* [How to customize the appearance of items in SfAutoComplete](https://help.syncfusion.com/xamarin/autocomplete/customizing-autocomplete)
+* [How to work with data binding in SfAutoComplete](https://help.syncfusion.com/xamarin/autocomplete/data-binding)
+N> You can refer to our [Xamarin AutoComplete](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete) feature tour page for its groundbreaking feature representations. You can also explore our [Xamarin.Forms AutoComplete example](https://github.com/syncfusion/xamarin-demos/tree/master/Forms/AutoComplete) to know the functionalities of each feature.
diff --git a/Xamarin/AutoComplete/Dealing-with-Suggestion-Box.md b/Xamarin/AutoComplete/Dealing-with-Suggestion-Box.md
index 949e8d056..aefec1199 100644
--- a/Xamarin/AutoComplete/Dealing-with-Suggestion-Box.md
+++ b/Xamarin/AutoComplete/Dealing-with-Suggestion-Box.md
@@ -1,7 +1,7 @@
---
layout: post
-title: DropDown in Syncfusion SfAutoComplete control for Xamarin.Forms
-description: This section describes about the placement of the drop-down suggestion and how to get the filtered SfAutoComplete items.
+title: Suggestion Box in Syncfusion SfAutoComplete for Xamarin.Forms
+description: Learn about the placement of the drop-down suggestion box and how to retrieve filtered items in Xamarin.Forms SfAutoComplete control.
platform: xamarin
control: SfAutoComplete
documentation: ug
@@ -9,21 +9,20 @@ documentation: ug
# Dealing with Suggestion Box
-## Dealing with Suggestion Box in Xamarin SfAutoComplete
+## Overview
+The suggestion box is the drop-down list that displays filtered suggestions inside a popup. This section explains the properties that control the drop-down list behavior in the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control.
-Suggestion box is the drop-down list box, which displays the filtered suggestions inside a popup. This section explains the properties that deals with drop-down list in the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control.
-
-## Suggestion box placement mode
+## Suggestion Box Placement Mode
-The drop-down that shows the filtered items will be placed automatically based on the available space and can also be customized using the [`SuggestionBoxPlacement`]( https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionBoxPlacement.html) property.
+The drop-down that shows the filtered items will be placed automatically based on the available space. You can also customize its placement using the [`SuggestionBoxPlacement`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionBoxPlacement.html) property.
-[`Top`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionBoxPlacement.html#Syncfusion_SfAutoComplete_XForms_SuggestionBoxPlacement_Top) - Drop-down will be placed above the text box.
+* [`Top`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionBoxPlacement.html#Syncfusion_SfAutoComplete_XForms_SuggestionBoxPlacement_Top) - Drop-down will be placed above the text box.
-[`Bottom`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionBoxPlacement.html#Syncfusion_SfAutoComplete_XForms_SuggestionBoxPlacement_Bottom) - Drop-down will be placed below the text box.
+* [`Bottom`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionBoxPlacement.html#Syncfusion_SfAutoComplete_XForms_SuggestionBoxPlacement_Bottom) - Drop-down will be placed below the text box.
-[`Auto`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionBoxPlacement.html#Syncfusion_SfAutoComplete_XForms_SuggestionBoxPlacement_Auto) - Drop-down will be placed based on the available space either top or bottom of the text box.
+* [`Auto`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionBoxPlacement.html#Syncfusion_SfAutoComplete_XForms_SuggestionBoxPlacement_Auto) - Drop-down will be placed based on the available space either top or bottom of the text box.
-[`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionBoxPlacement.html#Syncfusion_SfAutoComplete_XForms_SuggestionBoxPlacement_None) - Drop-down will not be shown with the filtered items.
+* [`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionBoxPlacement.html#Syncfusion_SfAutoComplete_XForms_SuggestionBoxPlacement_None) - Drop-down will not be shown with the filtered items.
{% tabs %}
@@ -115,7 +114,7 @@ namespace AutocompleteSample

-N>Set the SoftInputMode to AdjustResize in MainActivity, to resolve the suggestion box overlapping when the keyboard is open on the Android platform.
+> **Note:** Set the SoftInputMode to AdjustResize in MainActivity to resolve the suggestion box overlapping when the keyboard is open on the Android platform.
{% highlight c# %}
@@ -133,9 +132,9 @@ N>Set the SoftInputMode to AdjustResize in MainActivity, to resolve the suggesti
{% endhighlight %}
-## Maximum suggestion box height
+## Maximum Suggestion Box Height
-The maximum height of the suggestion box in the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control can be varied using the [`MaximumDropDownHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_MaximumDropDownHeight) property.
+The maximum height of the suggestion box in the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control can be customized using the [`MaximumDropDownHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_MaximumDropDownHeight) property.
{% tabs %}
@@ -227,9 +226,9 @@ namespace AutocompleteSample

-## Opening suggestion box on focus
+## Opening Suggestion Box on Focus
-Suggestion box can be shown whenever the control receives focus using the [`ShowSuggestionsOnFocus`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_ShowSuggestionsOnFocus) property. At this time, suggestion list is the complete list of data source.
+The suggestion box can be shown whenever the control receives focus by using the [`ShowSuggestionsOnFocus`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_ShowSuggestionsOnFocus) property. When this property is enabled, the suggestion list will display the complete list of data source items.
{% tabs %}
@@ -309,10 +308,10 @@ namespace AutocompleteSample

-## Delay opening suggestion box
+## Delaying Suggestion Box Opening
-The [`PopupDelay`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_PopupDelay) property is used to delay the suggestion box opening process. It gets milliseconds as input in integer data type.
-In this example, a time duration of 3 seconds is set to popup delay.
+The [`PopupDelay`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_PopupDelay) property is used to delay the suggestion box opening process. It accepts milliseconds as input in integer data type.
+In this example, a time duration of 3 seconds (3000 milliseconds) is set for the popup delay:
{% tabs %}
@@ -402,11 +401,10 @@ namespace AutocompleteSample
{% endtabs %}
-## Delay before searching algorithm starts
-
-The [`SearchDelay`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SearchDelay) property is used to delay the searching algorithm process. It gets milliseconds as input in integer data type.
+## Delaying Search Process
+The [`SearchDelay`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SearchDelay) property is used to delay the searching algorithm process. It accepts milliseconds as input in integer data type.
-In this example, a time duration of 3 seconds is set to search delay.
+In this example, a time duration of 3 seconds (3000 milliseconds) is set for the search delay:
{% tabs %}
@@ -496,9 +494,8 @@ namespace AutocompleteSample
{% endtabs %}
-## Avoid opening suggestion box
-
-To avoid opening the drop-down, you can set the [`SuggestionBoxPlacement`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SuggestionBoxPlacement) API to [`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionBoxPlacement.html#Syncfusion_XForms_ComboBox_SuggestionBoxPlacement_None).
+## Preventing Suggestion Box from Opening
+To prevent the drop-down suggestion box from opening, you can set the [`SuggestionBoxPlacement`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SuggestionBoxPlacement) property to [`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionBoxPlacement.html#Syncfusion_SfAutoComplete_XForms_SuggestionBoxPlacement_None).
{% tabs %}
diff --git a/Xamarin/AutoComplete/Diacritic-Sensitivity.md b/Xamarin/AutoComplete/Diacritic-Sensitivity.md
index 928caf620..3109a74c1 100644
--- a/Xamarin/AutoComplete/Diacritic-Sensitivity.md
+++ b/Xamarin/AutoComplete/Diacritic-Sensitivity.md
@@ -1,17 +1,20 @@
---
layout: post
-title: Diacritic sensitivity in Syncfusion SfAutoComplete control
-description: This section will describes about how to enable and disable Diacritic sensitivity in Xamarin.Forms SfAutoComplete
+title: Diacritic Sensitivity in Xamarin SfAutoComplete | Syncfusion
+description: This section describes how to enable and disable diacritic sensitivity in the Xamarin.Forms SfAutoComplete control
platform: xamarin
control: SfAutoComplete
documentation: ug
---
-# Diacritic Sensitivity
+# Diacritic Sensitivity in Xamarin SfAutoComplete
-## Diacritic Sensitivity in Xamarin SfAutoComplete
+The SfAutoComplete control supports working with different languages and keyboard types. This allows you to populate items from languages with letters containing diacritics (accent marks) and search for them using English characters from an en-US keyboard.
-The control does not stick with one type of keyboard, so you can populate items from a language with letters containing diacritics, and search for them with English characters from an en-US keyboard. Users can enable or disable the diacritic sensitivity with the [`IgnoreDiacritic`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_IgnoreDiacritic) property. In the below code example we have illustrate how to enables the diacritic sensitivity so that items in the suggestion list get populated by entering any diacritic character of that alphabet.
+## Configuring Diacritic Sensitivity
+Users can enable or disable the diacritic sensitivity using the [`IgnoreDiacritic`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_IgnoreDiacritic) property. When set to `false`, the control becomes diacritic-sensitive, meaning it distinguishes between characters with and without diacritics. When set to `true` (default), the control ignores diacritics during search operations.
+
+The following example demonstrates how to enable diacritic sensitivity so that items in the suggestion list are populated only when entering the exact diacritic characters:
{% tabs %}
{% highlight xaml %}
diff --git a/Xamarin/AutoComplete/Getting-Started.md b/Xamarin/AutoComplete/Getting-Started.md
index 98e0e8262..784eb20c1 100644
--- a/Xamarin/AutoComplete/Getting-Started.md
+++ b/Xamarin/AutoComplete/Getting-Started.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Getting Started for Syncfusion Xamarin.Forms AutoComplete
-description: A quick tour to initial users on Syncfusion autocomplete control and explain about how to use it for Xamarin.Forms platform
+title: Getting Started with Xamarin.Forms AutoComplete | Syncfusion
+description: A quick guide to help new users get started with the Syncfusion AutoComplete control for Xamarin.Forms applications
platform: xamarin
control: SfAutoComplete
documentation: ug
@@ -9,40 +9,40 @@ documentation: ug
# Getting Started with Xamarin AutoComplete (SfAutoComplete)
-This section explains the steps to create AutoComplete, populate it with data and filter the suggestions. This section covers only the minimal features that are needed to get started with the AutoComplete.
+This section explains how to create an AutoComplete control, populate it with data, and configure filtering options. This guide covers the essential features needed to get started with the AutoComplete control.
-To get start quickly with [Xamarin AutoComplete](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete) (SfAutoComplete), you can check on this video:
+To get started quickly with the [Xamarin AutoComplete](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete) (SfAutoComplete), you can watch this video tutorial:
## Assembly deployment
-After installing [Essential Studio® for Xamarin](https://www.syncfusion.com/downloads/xamarin), you can find all the required assemblies in the installation folders, {Syncfusion Essential Studio Installed location} \Essential Studio\\{Version #}\Xamarin\lib.
+After installing [Essential Studio for Xamarin](https://www.syncfusion.com/downloads/xamarin), you can find all the required assemblies in the installation folders, {Syncfusion Essential Studio Installed location}\Essential Studio\{Version #}\Xamarin\lib.
-E.g.: C:\Program Files (x86) \Syncfusion\Essential Studio\19.1.0.54\Xamarin\lib
+Example: C:\Program Files (x86)\Syncfusion\Essential Studio\19.1.0.54\Xamarin\lib
-N> Assemblies can be found in unzipped package location(Documents/Syncfusion/{Version #}/Xamarin/lib) in Mac.
+> **Note:** On Mac, assemblies can be found in the unzipped package location (Documents/Syncfusion/{Version #}/Xamarin/lib).
## Adding SfAutoComplete reference
-You can add [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) reference using one of the following methods:
+You can add the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) reference using one of the following methods:
-**Method 1: Adding SfAutoComplete reference from nuget.org**
+**Method 1: Adding SfAutoComplete reference from NuGet.org**
-Syncfusion Xamarin components are available in [nuget.org](https://www.nuget.org/). To add SfAutoComplete to your project, open the [NuGet package](https://help.syncfusion.com/xamarin/visual-studio-integration/nuget-packages) manager in Visual Studio, search for [Syncfusion.Xamarin.SfAutoComplete](https://www.nuget.org/packages/Syncfusion.Xamarin.SfAutoComplete), and then install it.
+Syncfusion Xamarin components are available on [NuGet.org](https://www.nuget.org/). To add SfAutoComplete to your project, open the [NuGet package](https://help.syncfusion.com/xamarin/visual-studio-integration/nuget-packages) manager in Visual Studio, search for [Syncfusion.Xamarin.SfAutoComplete](https://www.nuget.org/packages/Syncfusion.Xamarin.SfAutoComplete), and install it.

-N> Install the same version of SfAutoComplete NuGet in all the projects.
+> **Note:** Install the same version of SfAutoComplete NuGet in all projects in your solution.
**Method 2: Adding SfAutoComplete reference from toolbox**
-Syncfusion also provides Xamarin Toolbox. Using this toolbox, you can drag the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control to the XAML page. It will automatically install the required NuGet packages and add the namespace to the page. To install Syncfusion Xamarin Toolbox, refer to [Toolbox](https://help.syncfusion.com/xamarin/utility#toolbox).
+Syncfusion provides a Xamarin Toolbox. Using this toolbox, you can drag the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control to the XAML page. It will automatically install the required NuGet packages and add the namespace to the page. To install the Syncfusion Xamarin Toolbox, refer to [Toolbox](https://help.syncfusion.com/xamarin/utility#toolbox).
**Method 3: Adding SfAutoComplete assemblies manually from the installed location**
-If you prefer to manually reference the assemblies instead referencing from NuGet, add the following assemblies in respective projects.
+If you prefer to manually reference the assemblies instead of using NuGet, add the following assemblies to the respective projects:
Location: {Installed location}/{version}/Xamarin/lib
@@ -65,15 +65,15 @@ Location: {Installed location}/{version}/Xamarin/lib
-N> To know more about obtaining our components, refer to these links for [Mac](https://help.syncfusion.com/xamarin/installation/mac-installer/how-to-download) and [Windows](https://help.syncfusion.com/xamarin/installation/web-installer/how-to-download).
+> **Note:** To learn more about obtaining our components, refer to these links for [Mac](https://help.syncfusion.com/xamarin/installation/mac-installer/how-to-download) and [Windows](https://help.syncfusion.com/xamarin/installation/web-installer/how-to-download).
-I> Starting with v16.2.0.x, if you reference Syncfusion assemblies from the trial setup or from the NuGet feed, you also have to include a license key in your projects. Please refer to [Syncfusion license key](https://help.syncfusion.com/common/essential-studio/licensing/overview) to know about registering Syncfusion license key in your Xamarin application to use our components.
+> **Important:** Starting with v16.2.0.x, if you reference Syncfusion assemblies from the trial setup or from the NuGet feed, you also have to include a license key in your projects. Please refer to [Syncfusion license key](https://help.syncfusion.com/common/essential-studio/licensing/overview) to learn about registering a Syncfusion license key in your Xamarin application to use our components.
### Additional Step for iOS
-N> If you are adding the references from toolbox, this step is not needed.
+> **Note:** If you are adding the references from the toolbox, this step is not needed.
-Create an instance of `SfAutoCompleteRenderer` in FinishedLaunching overridden method of an AppDelegate class in iOS project as shown below:
+Create an instance of `SfAutoCompleteRenderer` in the `FinishedLaunching` overridden method of the AppDelegate class in your iOS project as shown below:
{% tabs %}
@@ -96,7 +96,7 @@ return base.FinishedLaunching(app, options);
### Additional Step for UWP
-This step is required only if the application is deployed in Release mode with .NET native tool chain enabled and it is for resolving the known Framework issue “Custom controls not rendering in Release mode” in UWP platform. Initializing the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) assembly at OnLaunched overridden method of the App class in UWP project is the suggested workaround. And the code example is shown below:
+This step is required only if the application is deployed in Release mode with .NET native tool chain enabled. It addresses the known Framework issue "Custom controls not rendering in Release mode" in UWP platform. Initialize the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) assembly in the `OnLaunched` overridden method of the App class in your UWP project as shown below:
{% tabs %}
@@ -145,7 +145,7 @@ Window.Current.Activate();
## Initializing AutoComplete
-Import the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) namespace in respective Page as shown below:
+Import the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) namespace in your page as shown below:
{% tabs %}
@@ -163,7 +163,7 @@ using Syncfusion.SfAutoComplete.XForms;
{% endtabs %}
-Then initialize an empty autocomplete as shown below,
+Then initialize an empty AutoComplete control as shown below:
{% tabs %}
@@ -223,7 +223,7 @@ namespace AutocompleteSample
## Populating AutoComplete with Data
-Now, let us create a simple list of country names and set it as the [`AutoCompleteSource`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_AutoCompleteSource) of AutoComplete.
+Now, let's create a simple list of country names and set it as the [`AutoCompleteSource`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_AutoCompleteSource) of the AutoComplete control:
{% tabs %}
diff --git a/Xamarin/AutoComplete/Header-and-Footer.md b/Xamarin/AutoComplete/Header-and-Footer.md
index e32350e7d..a10cfdc68 100644
--- a/Xamarin/AutoComplete/Header-and-Footer.md
+++ b/Xamarin/AutoComplete/Header-and-Footer.md
@@ -9,14 +9,12 @@ documentation: ug
# Header and Footer in Xamarin AutoComplete (SfAutoComplete)
-## Header and Footer in Xamarin SfAutoComplete
+The [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control allows you to add custom header and footer views to the suggestion list. This enhances the user experience by providing additional information or actions at the top and bottom of the dropdown.
-We can provide Header and Footer view in the suggestion list in [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) by enabling [`ShowDropDownHeaderView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_ShowDropDownHeaderView) and [`ShowDropDownFooterView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_ShowDropDownFooterView).
-
-## Header Content
-
-We can provide Header Content at the top of the AutoComplete's Suggestion box. [`DropDownHeaderView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DropDownHeaderView) property is used to set the content of the header. The height of the Header in the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) can be adjusted by the property [`DropDownHeaderViewHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DropDownHeaderViewHeight).
+## Adding a Header to the Suggestion List
+You can add a header view at the top of the AutoComplete's suggestion box by enabling the [`ShowDropDownHeaderView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_ShowDropDownHeaderView) property. The content of the header is set using the [`DropDownHeaderView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DropDownHeaderView) property, and its height can be adjusted with the [`DropDownHeaderViewHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DropDownHeaderViewHeight) property.
+The following example demonstrates how to add a header to the suggestion list:
{% tabs %}
{% highlight xaml %}
@@ -152,7 +150,7 @@ The following event will be hooked.
{% endtabs %}
-
+
## Footer Content
@@ -276,6 +274,6 @@ namespace AutocompleteSample
{% endtabs %}
-
+
N> You can refer to our [Xamarin AutoComplete](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete) feature tour page for its groundbreaking feature representations. You can also explore our [Xamarin.Forms AutoComplete example](https://github.com/syncfusion/xamarin-demos/tree/master/Forms/AutoComplete) to knows the functionalities of each feature.
\ No newline at end of file
diff --git a/Xamarin/AutoComplete/Highlighting-matched-text.md b/Xamarin/AutoComplete/Highlighting-matched-text.md
index e02e4bd48..1f5ba319c 100644
--- a/Xamarin/AutoComplete/Highlighting-matched-text.md
+++ b/Xamarin/AutoComplete/Highlighting-matched-text.md
@@ -1,32 +1,32 @@
---
layout: post
-title: MatchHighlighting in Syncfusion SfAutoComplete control
-description: This section will describe about how to highlight the matched characters in Xamarin.Forms SfAutoComplete.
+title: Text Highlighting in Xamarin AutoComplete | Syncfusion
+description: This section describes how to highlight the matched characters in the Syncfusion Xamarin.Forms SfAutoComplete control.
platform: xamarin
control: SfAutoComplete
documentation: ug
---
-# Highlighting matched text
+# Highlighting Matched Text in Xamarin AutoComplete
-## Highlighting matched text in Xamarin SfAutoComplete
+## Overview
-Highlight matching characters in a suggestion list to pick an item with more clarity. There are two ways to highlight the matching text:
+The SfAutoComplete control allows you to highlight matching characters in the suggestion list, making it easier for users to identify and select the desired item. This feature enhances the user experience by visually emphasizing the text that matches the user's input.
+There are two highlighting modes available:
+* [`FirstOccurrence`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.OccurrenceMode.html#Syncfusion_SfAutoComplete_XForms_OccurrenceMode_FirstOccurrence) - Highlights only the first instance of the matching text
+* [`MultipleOccurrence`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.OccurrenceMode.html#Syncfusion_SfAutoComplete_XForms_OccurrenceMode_MultipleOccurrence) - Highlights all instances of the matching text
-* [`First Occurrence`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.OccurrenceMode.html#Syncfusion_SfAutoComplete_XForms_OccurrenceMode_FirstOccurrence)
+## Customizing the Highlighted Text
-* [`Multiple Occurrence`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.OccurrenceMode.html#Syncfusion_SfAutoComplete_XForms_OccurrenceMode_MultipleOccurrence)
+You can customize the appearance of the highlighted text using the following properties:
+* [`HighlightedTextColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_HighlightedTextColor) - Sets the color of the highlighted text to differentiate it from the rest of the text.
+* [`HighlightedTextFontAttributes`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_HighlightedTextFontAttributes) - Sets the font attributes (such as Bold, Italic) of the highlighted text.
-The text highlight can be indicated with various customizing styles by enabling the below properties. They are
+## Highlighting the First Occurrence
-* [`HighlightedTextColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_HighlightedTextColor) - sets the color of the highlighted text for differentiating the highlighted characters.
-
-* [`HighlightTextFontAttributes`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_HighlightedTextFontAttributes) - sets the FontAttributes of the highlighted text.
-
-## First Occurrence
-
-It highlights the first position of the matching characters in the suggestion list.
+When you set the [`TextHighlightMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_TextHighlightMode) property to [`FirstOccurrence`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.OccurrenceMode.html#Syncfusion_SfAutoComplete_XForms_OccurrenceMode_FirstOccurrence), only the first instance of the matching text in each suggestion item will be highlighted.
+This is particularly useful with the [`StartsWith`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionMode.html#Syncfusion_SfAutoComplete_XForms_SuggestionMode_StartsWith) suggestion mode, as shown in the following example:
{% tabs %}
{% highlight xaml %}
@@ -106,9 +106,9 @@ namespace AutocompleteSample
{% endtabs %}
-
+
-## Multiple Occurrence
+## Highlighting Multiple Occurrences
It highlights the matching character that are present everywhere in the suggestion list for [`Contains`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SuggestionMode.html#Syncfusion_SfAutoComplete_XForms_SuggestionMode_Contains) case in [`SuggestionMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SuggestionMode).
@@ -190,6 +190,6 @@ namespace AutocompleteSample
{% endhighlight %}
{% endtabs %}
-
+
N> You can refer to our [Xamarin AutoComplete](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete) feature tour page for its groundbreaking feature representations. You can also explore our [Xamarin.Forms AutoComplete example](https://github.com/syncfusion/xamarin-demos/tree/master/Forms/AutoComplete) to knows the functionalities of each feature.
\ No newline at end of file
diff --git a/Xamarin/AutoComplete/Maximum-display-item-with-Expander.md b/Xamarin/AutoComplete/Maximum-display-item-with-Expander.md
index 578b2b9a5..f5bef12b6 100644
--- a/Xamarin/AutoComplete/Maximum-display-item-with-Expander.md
+++ b/Xamarin/AutoComplete/Maximum-display-item-with-Expander.md
@@ -1,12 +1,12 @@
---
layout: post
-title: LoadMore in Syncfusion SfAutoComplete control for Xamarin.Forms
-description: This section will deswcribe about how to restrict maximum suggestion to be displayed in Xamarin.Forms SfAutoComplete.
+title: Load More in Xamarin AutoComplete | Syncfusion
+description: This section describes how to restrict the maximum number of suggestions displayed in the Syncfusion Xamarin.Forms SfAutoComplete control.
platform: xamarin
control: SfAutoComplete
documentation: ug
---
-# Maximum Display Item with Expander
+# Maximum Display Item with Load More Option
## Maximum display item with expander in Xamarin SfAutoComplete
@@ -101,13 +101,15 @@ namespace AutocompleteSample
{% endtabs %}
-
+
-## Restricting the maximum display of item dynamically
+## Dynamically Changing the Maximum Suggestion Count
-We can restrict the maximum display of items dynamically by calling [`LoadMore`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_LoadMore) method. The user can dynamically change the maximum suggestion count by calling [`LoadMore`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_LoadMore) method by giving the maximum suggestion as the argument inside.
+You can dynamically change the maximum number of suggestions displayed by calling the [`LoadMore`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_LoadMore) method. This method can be called with or without an argument:
-N> [`LoadMore`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_LoadMore) method has enhanced only on iOS and Android platform.
+* Without an argument: Loads all remaining items
+* With an argument: Loads the specified number of additional items
+> **Note:** The [`LoadMore`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_LoadMore) method is supported only on iOS and Android platforms.
{% tabs %}
{% highlight c# %}
@@ -121,11 +123,11 @@ autoComplete.LoadMore(5);
{% endhighlight %}
{% endtabs %}
-## Load more view customization
+## Customizing the Load More View
-[`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) allows customizing User Interface(UI) of Load More view.
-To customize the load more text, add the custom UI in the [`LoadMoreTemplate`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_LoadMoreTemplate) API in [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html), as shown in the following code snippet.
+The [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control allows you to customize the appearance of the Load More option using the [`LoadMoreTemplate`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_LoadMoreTemplate) property.
+The following example demonstrates how to create a custom Load More template:
{% tabs %}
{% highlight xaml %}
diff --git a/Xamarin/AutoComplete/Multiple-selection.md b/Xamarin/AutoComplete/Multiple-selection.md
index d1b37f65d..b4766a367 100644
--- a/Xamarin/AutoComplete/Multiple-selection.md
+++ b/Xamarin/AutoComplete/Multiple-selection.md
@@ -1,23 +1,22 @@
---
layout: post
-title: Multiple Selection in Xamarin AutoComplete control | Syncfusion
-description: Learn about Multiple Selection support in Syncfusion Xamarin AutoComplete (SfAutoComplete) control and more details.
+title: Multiple Selection in Xamarin.Forms AutoComplete | Syncfusion
+description: Learn how to implement and customize multiple selection in the Syncfusion Xamarin.Forms AutoComplete (SfAutoComplete) control.
platform: xamarin
control: SfAutoComplete
documentation: ug
---
-# Multiple Selection in Xamarin AutoComplete (SfAutoComplete)
+# Multiple Selection in Xamarin.Forms AutoComplete
-## Multiple Selection in Xamarin SfAutoComplete
-Select multiple items from a suggestion list. There are two ways to perform multi selection in autocomplete.
+## Overview
+The [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control allows users to select multiple items from a suggestion list. There are two ways to implement multiple selection:
* Token Representation
-
-* Delimiter
+* Delimiter
## Token Representation
-Selected items will be displayed with a customizable token representation and the users can remove each tokenized item with the close button.
+In token representation mode, selected items are displayed as customizable tokens, and users can remove each tokenized item using the close button.
{% tabs %}
@@ -99,13 +98,14 @@ namespace AutocompleteSample
{% endtabs %}
-### Wrap Mode of Token
+### Token Wrap Modes
+The selected items can be displayed as tokens inside the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control in two ways:
-The selected item can be displayed as token inside [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) in two ways. They are
+* [`Wrap`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokensWrapMode.html#Syncfusion_SfAutoComplete_XForms_TokensWrapMode_Wrap) - When [`TokensWrapMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_TokensWrapMode) is set to `Wrap`, the selected items will wrap to the next line of the control.
-* [`Wrap`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokensWrapMode.html#Syncfusion_SfAutoComplete_XForms_TokensWrapMode_Wrap) - When [`TokensWrapMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_TokensWrapMode) is set to [`Wrap`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokensWrapMode.html#Syncfusion_SfAutoComplete_XForms_TokensWrapMode_Wrap) the selected items will be wrap to the next line of the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html).
+* [`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokensWrapMode.html#Syncfusion_SfAutoComplete_XForms_TokensWrapMode_None) - When [`TokensWrapMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_TokensWrapMode) is set to `None`, the selected items will be arranged horizontally.
-* [`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokensWrapMode.html#Syncfusion_SfAutoComplete_XForms_TokensWrapMode_None) - When [`TokensWrapMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_TokensWrapMode) is set to [`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokensWrapMode.html#Syncfusion_SfAutoComplete_XForms_TokensWrapMode_None) the selected item will be wrap in horizontal orientation.
+The following example demonstrates how to use token representation with images:
{% tabs %}
@@ -184,9 +184,8 @@ namespace AutocompleteSample
{% endtabs %}
-## Create and Initialize Business Models
-
-Define a simple model class `Employee` with the property of Name, Image and populate employee data in ViewModel.
+### Business Model for Token Example
+Define a simple model class `Employee` with properties for Name and Image, and populate employee data in the ViewModel:
{% tabs %}
@@ -280,27 +279,19 @@ namespace AutocompleteSample
### Token Customization
-Customization can be done for Token. There are various ways to customize the tokens. They are as follows.
-
-* [`TextColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_TextColor) - sets the color of the text inside the token.
-
-* [`FontSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_FontSize) - sets the size of the Font inside the token.
-
-* [`FontFamily`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_FontFamily) - sets the Font family for the text inside the token.
-
-* [`BackgroundColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_BackgroundColor) - sets the background color of the token.
-
-* [`SelectedBackgroundColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_SelectedBackgroundColor) - sets the background color of the token when it is selected.
-
-* [`IsCloseButtonVisible`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_IsCloseButtonVisible) - Enables and disables the close button inside SfAutoComplete.
-
-* [`DeleteButtonColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_DeleteButtonColor) - sets the color of the close button inside [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) .
-
-* [`CornerRadius`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_CornerRadius) - sets the corner radius for the token.
-
-* [`DeleteButtonPlacement`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_DeleteButtonPlacement) - sets the placement of delete button. [`Left`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.DeleteButtonPlacement.html#Syncfusion_SfAutoComplete_XForms_DeleteButtonPlacement_Left) and [`Right`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.DeleteButtonPlacement.html#Syncfusion_SfAutoComplete_XForms_DeleteButtonPlacement_Right) are the placement options. By default, it is set placed at right side of the token.
+You can customize tokens in various ways using the [`TokenSettings`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html) property:
+* [`TextColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_TextColor) - Sets the color of the text inside the token
+* [`FontSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_FontSize) - Sets the size of the font inside the token
+* [`FontFamily`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_FontFamily) - Sets the font family for the text inside the token
+* [`BackgroundColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_BackgroundColor) - Sets the background color of the token
+* [`SelectedBackgroundColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_SelectedBackgroundColor) - Sets the background color of the token when it is selected
+* [`IsCloseButtonVisible`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_IsCloseButtonVisible) - Enables or disables the close button inside the token
+* [`DeleteButtonColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_DeleteButtonColor) - Sets the color of the close button
+* [`CornerRadius`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_CornerRadius) - Sets the corner radius for the token
+* [`DeleteButtonPlacement`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_DeleteButtonPlacement) - Sets the placement of the delete button (Left or Right)
-N> [`SelectedBackgroundColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_SelectedBackgroundColor) and [`CornerRadius`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_CornerRadius) support has enhanced only on iOS and Android platform.
+> **Note**
+> [`SelectedBackgroundColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_SelectedBackgroundColor) and [`CornerRadius`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.TokenSettings.html#Syncfusion_SfAutoComplete_XForms_TokenSettings_CornerRadius) are supported only on iOS and Android platforms.
{% tabs %}
@@ -390,9 +381,9 @@ namespace AutocompleteSample

-## Delimiter
+## Delimiter Mode
-When selecting the multiple items, the selected items can be divided with a desired character given for a delimiter. We can set delimiter character with the [`Delimiter`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.MultiSelectMode.html#Syncfusion_SfAutoComplete_XForms_MultiSelectMode_Delimiter) property.
+In delimiter mode, selected items are separated by a specified character. You can set the delimiter character using the [`Delimiter`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_Delimiter) property.
{% tabs %}
@@ -477,11 +468,12 @@ namespace AutocompleteSample

-### Selection indicator
+## Selection Indicator
-The autocomplete enables the user to indicate the selected item from the datasource when selecting multiple items from the dropdown. It can be performed by enabling [`EnableSelectionIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_EnableSelectionIndicator) property.
+You can indicate which items are selected in the dropdown list when using multiple selection by enabling the [`EnableSelectionIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_EnableSelectionIndicator) property. You can also customize the indicator's appearance.
-N> Selection Indicator support has enhanced only on iOS and Android platform.
+> **Note**
+> Selection Indicator support is available only on iOS and Android platforms.
{% tabs %}
@@ -655,4 +647,4 @@ namespace AutocompleteSample
{% endtabs %}
-N> You can refer to our [Xamarin AutoComplete](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete) feature tour page for its groundbreaking feature representations. You can also explore our [Xamarin.Forms AutoComplete example](https://github.com/syncfusion/xamarin-demos/tree/master/Forms/AutoComplete) to knows the functionalities of each feature.
\ No newline at end of file
+N> You can refer to our [Xamarin AutoComplete](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete) feature tour page for its groundbreaking feature representations. You can also explore our [Xamarin.Forms AutoComplete example](https://github.com/syncfusion/xamarin-demos/tree/master/Forms/AutoComplete) to knows the functionalities of each feature.
diff --git a/Xamarin/AutoComplete/No-Result-Found.md b/Xamarin/AutoComplete/No-Result-Found.md
index 371f22d50..bcb1b3594 100644
--- a/Xamarin/AutoComplete/No-Result-Found.md
+++ b/Xamarin/AutoComplete/No-Result-Found.md
@@ -1,7 +1,7 @@
---
layout: post
-title: No Result Found in Xamarin AutoComplete control | Syncfusion
-description: Learn about No Result Found support in Syncfusion Xamarin AutoComplete (SfAutoComplete) control and more details.
+title: No Results Found in Xamarin.Forms AutoComplete | Syncfusion
+description: Learn how to configure and customize the "No Results Found" message in Syncfusion Xamarin.Forms AutoComplete (SfAutoComplete) control.
platform: xamarin
control: SfAutoComplete
documentation: ug
@@ -88,11 +88,18 @@ namespace AutocompleteSample
{% endtabs %}
-
+
-## Customizing NoResultsFoundText
+## Customizing the No Results Found Message
-The [`NoResultsFoundTextColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_NoResultsFoundTextColor), [`NoResultsFoundFontSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_NoResultsFoundFontSize), [`NoResultsFoundFontAttributes`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_NoResultsFoundFontAttributes), and [`NoResultsFoundFontFamily`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_NoResultsFoundFontFamily) properties are used to customize the foreground color, font size, font attribute, and font family of NoResultsFoundText.
+The SfAutoComplete control provides several properties to customize the appearance of the "No Results Found" message:
+
+* [`NoResultsFoundTextColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_NoResultsFoundTextColor) - Customizes the text color
+* [`NoResultsFoundFontSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_NoResultsFoundFontSize) - Sets the font size
+* [`NoResultsFoundFontAttributes`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_NoResultsFoundFontAttributes) - Applies font attributes (Bold, Italic, etc.)
+* [`NoResultsFoundFontFamily`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_NoResultsFoundFontFamily) - Sets a custom font family
+
+The following example demonstrates how to customize the appearance of the "No Results Found" message:
{% tabs %}
{% highlight xaml %}
diff --git a/Xamarin/AutoComplete/Overview.md b/Xamarin/AutoComplete/Overview.md
index 252fd20d1..7ddb0ad90 100644
--- a/Xamarin/AutoComplete/Overview.md
+++ b/Xamarin/AutoComplete/Overview.md
@@ -7,34 +7,35 @@ control: SfAutoComplete
documentation: ug
---
-# Overview of Xamarin AutoComplete (SfAutoComplete)
+# Overview of Xamarin.Forms AutoComplete (SfAutoComplete)
-Essential [AutoComplete for Xamarin.Forms](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete) provides a simpler way to complete the text based on the characters that the user has entered before. It also provides option to choose a suggestion from drop down or append a suggestion to the text directly.
+Essential [AutoComplete for Xamarin.Forms](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete) provides a simple way to complete text based on the characters that the user has entered. It also provides options to choose a suggestion from a drop-down list or append a suggestion to the text directly.
-
+
## Key Features
-* AutoComplete modes - AutoComplete provides 3 different ways to display the filtered suggestions. They are displaying suggestion through drop down list, appending the first suggestion to text and both of these.
+* **AutoComplete Modes** - AutoComplete provides three different ways to display filtered suggestions: displaying suggestions through a drop-down list, appending the first suggestion to text, or both.
-* Suggestion modes - Suggestions can be filtered in 9 different modes, like StartsWith, EndWith, Contains, Equals, Custom etc. AutoComplete provides both case sensitive and insensitive modes.
+* **Suggestion Modes** - Suggestions can be filtered in nine different modes, such as StartsWith, EndsWith, Contains, Equals, Custom, etc. AutoComplete provides both case-sensitive and case-insensitive modes.
-* Watermark - Supports explanatory text inside AutoComplete control until the user inputs text. Watermark is restored again if user clears the text in control.
+* **Watermark** - Supports explanatory text inside the AutoComplete control until the user inputs text. The watermark is restored if the user clears the text in the control.
-* Popup delay & Minimum prefix characters - Filtering process can be delayed by providing the minimum character count, after which AutoComplete starts giving suggestions. Displaying the filtered suggestions through drop down list can also be delayed for some time duration.
+* **Popup Delay & Minimum Prefix Characters** - Filtering process can be delayed by providing the minimum character count, after which AutoComplete starts giving suggestions. Displaying the filtered suggestions through a drop-down list can also be delayed for a specified time duration.
-* Customization support - AutoComplete provide options to customize both the Entry and Suggestion drop down.
+* **Customization Support** - AutoComplete provides options to customize both the Entry and Suggestion drop-down.
-* Multiple Selection - AutoComplete provides 2 different ways to select multiple items from the suggestion list. They are using Token representation and Delimiter. In Token mode, the text can be wrapped in two ways. They are Wrap and None. In Wrap mode text will be wrap to next line. When using None, the text will be wrapped horizontally.
+* **Multiple Selection** - AutoComplete provides two different ways to select multiple items from the suggestion list: using Token representation and Delimiter. In Token mode, the text can be wrapped in two ways: Wrap and None. In Wrap mode, text will wrap to the next line. When using None, the text will be wrapped horizontally.
-* Load More - Restrict the number of suggestions displayed and have the remaining items loaded by selecting LoadMore.
+* **Load More** - Restrict the number of suggestions displayed and load the remaining items by selecting LoadMore.
-* Header and Footer - Header and Footer content can be given in the top and bottom of the Suggestion list in SfAutoComplete.
+* **Header and Footer** - Header and Footer content can be added to the top and bottom of the Suggestion list in SfAutoComplete.
-* Diacritic Sense - AutoComplete provides populating the items from a language with letters containing diacritics, and search for them with English characters from an en-US keyboard.
+* **Diacritic Sense** - AutoComplete supports populating items from languages with letters containing diacritics, and allows searching for them with English characters from an en-US keyboard.
-* Highlighting Text - AutoComplete provides highlighting the matching text in the Suggestion list based on the input given in it.
+* **Highlighting Text** - AutoComplete provides highlighting of matching text in the Suggestion list based on the input given.
-* Custom filter - AutoComplete provides the user to filter the item in the Suggestion list based on their filtering condition.
+* **Custom Filter** - AutoComplete allows users to filter items in the Suggestion list based on custom filtering conditions.
-N> You can also explore our [Xamarin.Forms AutoComplete example](https://github.com/syncfusion/xamarin-demos/tree/master/Forms/AutoComplete) to knows the functionalities of each feature.
\ No newline at end of file
+> **Note**
+> You can also explore our [Xamarin.Forms AutoComplete example](https://github.com/syncfusion/xamarin-demos/tree/master/Forms/AutoComplete) to learn about the functionalities of each feature.
diff --git a/Xamarin/AutoComplete/Populating-Data.md b/Xamarin/AutoComplete/Populating-Data.md
index 6e0e8cba3..46232dbcc 100644
--- a/Xamarin/AutoComplete/Populating-Data.md
+++ b/Xamarin/AutoComplete/Populating-Data.md
@@ -1,22 +1,21 @@
---
layout: post
title: Data Binding in Xamarin.Forms AutoComplete Control | Syncfusion
-description: This section describes how to populate the strings or objects in the autocomplete for the filtering suggestion list.
+description: Learn how to populate strings or objects in the Xamarin.Forms AutoComplete control for creating filtering suggestion lists.
platform: xamarin
control: SfAutoComplete
documentation: ug
---
+# Populating Data in Xamarin.Forms AutoComplete Control
-# Populating Data in Xamarin AutoComplete Control
+The [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control can be populated with a list of strings or business objects, which assists users while typing. Users can choose one item from the filtered suggestion list.
-[`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control can be populated with a list of string or business objects, which assists the user while typing. Users can choose one item from the filtered suggestion list.
-
-[`DataSource`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DataSource) property is used to populate data in [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control. This section explains populating AutoComplete with list of string and list of Employee details separately.
+The [`DataSource`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DataSource) property is used to populate data in the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control. This section explains how to populate AutoComplete with a list of strings and a list of Employee details separately.
## Populating String Data
-Create an instance of string list and populate items as shown below:
+Create an instance of a string list and populate items as shown below:
{% tabs %}
@@ -109,11 +108,11 @@ namespace AutocompleteSample
## Populating Business Objects
-Apart from string data, [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) can deal with business object data also. Now let us create Model and ViewModel classes to populate AutoComplete with Employee details.
+Apart from string data, the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control can also work with business object data. Let's create Model and ViewModel classes to populate AutoComplete with Employee details.
### Create and Initialize Business Models
-Define a simple model class Employee with fields ID, Name and populate employee data in ViewModel.
+Define a simple model class Employee with fields ID, Name and populate employee data in the ViewModel.
{% tabs %}
@@ -165,9 +164,9 @@ namespace AutocompleteSample
{% endtabs %}
-### Populate data in AutoComplete and Setting DisplayMemberPath
+### Populate Data in AutoComplete and Set DisplayMemberPath
-Now populate this EmployeeViewModel data in [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control by binding with [`DataSource`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DataSource) property. At this point, the control is populated with the list of employees. But the Employee model contains two properties ID and Name so it is necessary to intimate by which property it should filter suggestions. [`DisplayMemberPath`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DisplayMemberPath) property specifies the property path with which filtering is done on business objects.
+Now populate this EmployeeViewModel data in the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control by binding with the [`DataSource`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DataSource) property. At this point, the control is populated with the list of employees. Since the Employee model contains two properties (ID and Name), it is necessary to specify which property should be used for filtering suggestions. The [`DisplayMemberPath`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DisplayMemberPath) property specifies the property path with which filtering is done on business objects.
{% tabs %}
@@ -235,13 +234,14 @@ namespace AutocompleteSample
{% endtabs %}
-N> Set the EmployeeViewModel instance as the BindingContext of your control; this is done to bind properties of EmployeeViewModel to [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html).
+> **Note**
+> Set the EmployeeViewModel instance as the BindingContext of your control; this is done to bind properties of EmployeeViewModel to the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control.

### Setting ItemTemplate
-[`ItemTemplate`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_ItemTemplate) property helps to decorate suggestion items with custom templates. The following code explains the steps to add an image to the suggestion list item.
+The [`ItemTemplate`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_ItemTemplate) property helps to decorate suggestion items with custom templates. The following code explains the steps to add an image to the suggestion list item.
{% tabs %}
@@ -284,7 +284,7 @@ N> Set the EmployeeViewModel instance as the BindingContext of your control; thi
{% endtabs %}
-The [`ItemTemplate`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_ItemTemplate) in above XAML code is translated to C# and given below:
+The [`ItemTemplate`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_ItemTemplate) in the above XAML code is translated to C# and given below:
{% tabs %}
@@ -346,15 +346,16 @@ namespace AutocompleteSample
{% endtabs %}
-Refer [this](https://help.syncfusion.com/xamarin/sfautocomplete/customizing-autocomplete) link to learn more about the customizing options available in [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control.
+Refer to [this link](https://help.syncfusion.com/xamarin/sfautocomplete/customizing-autocomplete) to learn more about the customization options available in the [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control.
-N> Add the required image in drawable folder(Android), Resources folder(iOS) and at project location for UWP.
+> **Note**
+> Add the required image in the drawable folder (Android), Resources folder (iOS), and at the project location for UWP.

-## Populate a particular column of the items in DataTable using ItemsSource.
+## Populate a Particular Column of Items in DataTable Using ItemsSource
-The [`ItemsSource`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_ItemsSource) property helps to populate the DataTable items by using the [`DisplayMemberPath`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DisplayMemberPath) property. The following code explains the steps to add the data table items.
+The [`ItemsSource`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_ItemsSource) property helps to populate DataTable items by using the [`DisplayMemberPath`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DisplayMemberPath) property. The following code explains the steps to add data table items.
### Create, initialize, and add items in DataTable
@@ -409,7 +410,7 @@ public class ViewModel
{% endtabs %}
-Add the column name in the [`DisplayMemberPath`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DisplayMemberPath) property, to display all the data of the corresponding column, which is given as following code.
+Add the column name in the [`DisplayMemberPath`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_DisplayMemberPath) property to display all the data of the corresponding column, as shown in the following code:
{% tabs %}
diff --git a/Xamarin/AutoComplete/Prefix-Characters-Constraint.md b/Xamarin/AutoComplete/Prefix-Characters-Constraint.md
index b38baa41c..f85c56f27 100644
--- a/Xamarin/AutoComplete/Prefix-Characters-Constraint.md
+++ b/Xamarin/AutoComplete/Prefix-Characters-Constraint.md
@@ -6,11 +6,12 @@ platform: xamarin
control: SfAutoComplete
documentation: ug
---
-# Prefix Characters Constraint
+# Prefix Characters Constraint in Xamarin.Forms AutoComplete
-## Prefix Characters Constraint in Xamarin SfAutoComplete
+## Setting Minimum Prefix Characters
+Instead of displaying the suggestion list on every character entry, you can configure the SfAutoComplete control to filter and display matches only after a specific number of characters have been entered. This is achieved using the [`MinimumPrefixCharacters`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_MinimumPrefixCharacters) property. The default value of this property is 1.
-Instead of displaying suggestion list on every character entry, matches can be filtered and displayed after a few character entries. This can be done by [`MinimumPrefixCharacters`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_MinimumPrefixCharacters) property and its default value is 1.
+When you set the `MinimumPrefixCharacters` property to a value greater than 1, the suggestion list will only appear after the user has typed at least that many characters.
{% tabs %}
diff --git a/Xamarin/AutoComplete/Retrieving-Selected-Values.md b/Xamarin/AutoComplete/Retrieving-Selected-Values.md
index 20a9abd85..733f2994d 100644
--- a/Xamarin/AutoComplete/Retrieving-Selected-Values.md
+++ b/Xamarin/AutoComplete/Retrieving-Selected-Values.md
@@ -7,26 +7,23 @@ control: SfAutoComplete
documentation: ug
---
-# Handling Selected Items
+# Handling Selected Items in Xamarin.Forms AutoComplete
-## Retrieving selected values in Xamarin SfAutoComplete
+## Overview
-[`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) provides a way to handle the selected item using the following properties:
+The [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control provides several properties to handle selected items:
-* [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndex)
+* [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndex) - Gets or sets the index of a single selected item
+* [`SelectedIndices`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndices) - Gets or sets the indices of multiple selected items
+* [`SelectedItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedItem) - Gets or sets the selected item directly
-* [`SelectedIndices`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndices)
+## Working with SelectedIndex
-* [`SelectedItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedItem)
+The [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndex) property allows you to get or set the index of the selected item. This property is applicable only when [`MultiSelectMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_MultiSelectMode) is set to [`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.MultiSelectMode.html#Syncfusion_SfAutoComplete_XForms_MultiSelectMode_None). The [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndex) property accepts integer values.
-## SelectedIndex
-
-You can get or set the index of the selected item using the [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndex) property. It can be applicable only when [`MultiSelectMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_MultiSelectMode) is [`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.MultiSelectMode.html#Syncfusion_SfAutoComplete_XForms_MultiSelectMode_None). [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndex) will accept integer values.
-
-### How to set the index of item to be selected
-
-The [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndex) property holds the index of selected item in suggestion list.
+### Setting the SelectedIndex
+The following example demonstrates how to set the [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndex) property to select an item from the suggestion list:
{% tabs %}
{% highlight xaml %}
@@ -115,12 +112,9 @@ namespace AutocompleteSample
{% endtabs %}
-### Retrieving the index of selected item
-
-When an item is selected from suggestion list, its index can be retrieved using the [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndex) property.
-
-The following code snippet demonstrates the way to retrieve [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndex) and display it in an alert.
+### Retrieving the SelectedIndex
+When an item is selected from the suggestion list, you can retrieve its index using the [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndex) property. The following example demonstrates how to retrieve the [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndex) and display it in an alert:
{% tabs %}
{% highlight xaml %}
@@ -226,13 +220,12 @@ The following code snippet will handle the event
{% endtabs %}
-## SelectedIndices
-
-You can get or set the indices of the selected items using the [`SelectedIndices`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndices) property. It can be applicable when [`MultiSelectMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_MultiSelectMode) is in either [`Token`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.MultiSelectMode.html#Syncfusion_SfAutoComplete_XForms_MultiSelectMode_Token) or [`Delimiter`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.MultiSelectMode.html#Syncfusion_SfAutoComplete_XForms_MultiSelectMode_Delimiter). [`SelectedIndices`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndices) will accept collection of integer.
+## Working with SelectedIndices
-### How to set the indices of items
+The [`SelectedIndices`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndices) property allows you to get or set the indices of multiple selected items. This property is applicable when [`MultiSelectMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_MultiSelectMode) is set to either [`Token`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.MultiSelectMode.html#Syncfusion_SfAutoComplete_XForms_MultiSelectMode_Token) or [`Delimiter`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.MultiSelectMode.html#Syncfusion_SfAutoComplete_XForms_MultiSelectMode_Delimiter). The [`SelectedIndices`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndices) property accepts a collection of integers.
-[`SelectedIndices`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndices) property holds the Indices of selected items in suggestion list.
+### Setting the SelectedIndices
+The following example demonstrates how to set the [`SelectedIndices`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndices) property to select multiple items from the suggestion list:
{% tabs %}
@@ -328,11 +321,10 @@ namespace AutocompleteSample
{% endtabs %}
-### Retrieving the indices of selected item
-
-When an item is selected from suggestion list, its index can be retrieved using the [`SelectedIndices`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndices) property. The property type of [`SelectedIndices`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndices) is an Object. So you need to bind the property to the object type in the TwoWay Binding mode.
+### Retrieving the SelectedIndices
-The following code snippet demonstrates the way to retrieve [`SelectedIndices`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndices) and display in the ListView.
+When multiple items are selected from the suggestion list, you can retrieve their indices using the [`SelectedIndices`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndices) property. Since the property type is `object`, you need to bind it using two-way binding to capture changes.
+The following example demonstrates how to retrieve the [`SelectedIndices`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedIndices) and display them in a ListView:
{% tabs %}
@@ -485,7 +477,7 @@ namespace AutocompleteSample
{% endtabs %}
-## SelectedItem
+## Working with SelectedItem
The [`SelectedItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedItem) property is used to select the particular item from the suggestion list. You can either get or set the [`SelectedItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectedItem).
diff --git a/Xamarin/AutoComplete/Watermark.md b/Xamarin/AutoComplete/Watermark.md
index 734fe394f..43335cd65 100644
--- a/Xamarin/AutoComplete/Watermark.md
+++ b/Xamarin/AutoComplete/Watermark.md
@@ -1,18 +1,17 @@
---
layout: post
-title: Watermark in Xamarin AutoComplete control | Syncfusion
-description: Learn about Watermark support in Syncfusion Xamarin AutoComplete (SfAutoComplete) control and more details.
+title: Watermark in Xamarin.Forms AutoComplete | Syncfusion
+description: Learn about Watermark support in Syncfusion Xamarin.Forms AutoComplete (SfAutoComplete) control and how to customize it.
platform: xamarin
control: SfAutoComplete
documentation: ug
---
-# Watermark in Xamarin AutoComplete (SfAutoComplete)
+# Watermark in Xamarin.Forms AutoComplete (SfAutoComplete)
-## WaterMark in Xamarin SfAutocomplete
-
-[`Watermark`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_Watermark) provides a short note about the type of input to enter in the editor control. Watermarks are visible only if the text is empty. Also it will reappear if the text is cleared.
-The following example, explains the usability of watermark which hints user to start with the character “U”.
+## Overview
+The [`Watermark`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_Watermark) property provides a short hint that describes the expected input in the SfAutoComplete control. Watermarks are visible only when the text field is empty and will reappear if the text is cleared.
+The following example demonstrates how to use the watermark to hint users to start with the character "U":
{% tabs %}
@@ -102,9 +101,10 @@ namespace AutocompleteSample

-## Changing Watermark Text Color
+> **Note:** There's an inconsistency in the example above. The XAML code shows "Enter 'U' to filter suggestions" while the C# code shows "Enter 'A' to filter suggestions". Make sure to use consistent watermark text in your implementation.
+## Customizing Watermark Text Color
-Text color of watermark can be customized using [`WatermarkColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_WatermarkColor) property.
+You can customize the text color of the watermark using the [`WatermarkColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_WatermarkColor) property:
{% tabs %}
@@ -194,12 +194,11 @@ namespace AutocompleteSample
{% endtabs %}
-
-
-## Focus the control
+
-The autocomplete sets the user to focus the autocomplete textbox initially after the control gets rendered using [`IsFocused`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_IsFocused) property.
+## Setting Initial Focus on the Control
+You can set the initial focus on the AutoComplete control when the page loads by using the [`IsFocused`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_IsFocused) property. This automatically displays the keyboard for user input as soon as the control is rendered.
{% tabs %}
{% highlight xaml %}
@@ -290,4 +289,5 @@ namespace AutocompleteSample
{% endtabs %}
-N> You can refer to our [Xamarin AutoComplete](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete) feature tour page for its groundbreaking feature representations. You can also explore our [Xamarin.Forms AutoComplete example](https://github.com/syncfusion/xamarin-demos/tree/master/Forms/AutoComplete) to knows the functionalities of each feature.
\ No newline at end of file
+> **Note**
+> You can refer to our [Xamarin AutoComplete](https://www.syncfusion.com/xamarin-ui-controls/xamarin-autocomplete) feature tour page for its groundbreaking feature representations. You can also explore our [Xamarin.Forms AutoComplete example](https://github.com/syncfusion/xamarin-demos/tree/master/Forms/AutoComplete) to learn about the functionalities of each feature.
diff --git a/Xamarin/AutoComplete/how-to.md b/Xamarin/AutoComplete/how-to.md
index d8e91dba4..3bd306144 100644
--- a/Xamarin/AutoComplete/how-to.md
+++ b/Xamarin/AutoComplete/how-to.md
@@ -7,12 +7,12 @@ control: AutoComplete
documentation: ug
---
-# How to do an operation when selecting an item from drop-down list?
+# Handling Item Selection in Xamarin AutoComplete
+## How to perform operations when selecting an item from the dropdown list
-## How to perform an operation when selecting an item from drop-down list?
-
-You can perform an operation when selecting an item among the filtered suggestions using the [`SelectionChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectionChanged) event. The [`SelectionChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectionChanged) event returns the following arguments:
+The [`SfAutoComplete`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html) control provides the [`SelectionChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectionChanged) event that allows you to perform custom operations when a user selects an item from the filtered suggestions. This event is triggered whenever an item is selected or deselected in the control.
+The [`SelectionChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfAutoComplete.XForms.SfAutoComplete.html#Syncfusion_SfAutoComplete_XForms_SfAutoComplete_SelectionChanged) event provides the following arguments:
Members
diff --git a/Xamarin/Busy-Indicator/AnimationType.md b/Xamarin/Busy-Indicator/AnimationType.md
index c05181fd0..24aa20c34 100644
--- a/Xamarin/Busy-Indicator/AnimationType.md
+++ b/Xamarin/Busy-Indicator/AnimationType.md
@@ -1,18 +1,16 @@
---
layout: post
-title: Animation Type in Xamarin Busy Indicator control | Syncfusion
-description: Learn here all about Animation Type support in Syncfusion Xamarin Busy Indicator (SfBusyIndicator) control and more.
-platform: xamarin
-control: BusyIndicator
+title: Animation Types in Xamarin Busy Indicator Control | Syncfusion
+description: Learn about the various animation types supported by the Syncfusion Xamarin Busy Indicator (SfBusyIndicator) control.
+platform: Xamarin
+control: SfBusyIndicator
documentation: ug
---
-# Animation Type in Xamarin Busy Indicator (SfBusyIndicator)
+# Animation Types in Xamarin Busy Indicator (SfBusyIndicator)
-## Animation Type in Xamarin BusyIndicator (SfBusyIndicator)
+The [`AnimationType`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_AnimationType) property of the [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) allows users to select from 17 built-in animations. Available animations include: [`Ball`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Ball), [`HorizontalPulsingBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_HorizontalPulsingBox), [`Rectangle`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Rectangle), [`Battery`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Battery), [`Globe`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Globe), [`SingleCircle`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_SingleCircle), [`SlicedCircle`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_SlicedCircle), [`DoubleCircle`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_DoubleCircle), [`ECG`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_ECG), [`Print`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Print), [`Box`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Box), [`Gear`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Gear), [`Movie Timer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_MovieTimer), [`ZoomingTarget`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_ZoomingTarget), [`RollingBall`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_RollingBall), [`Cupertino`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Cupertino), and [`Material`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Material).
-The [`AnimationType`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_AnimationType) property for the [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) allows the users to set one of the 17 animations from the built-in animations. The different types of animations are [`Ball`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Ball), [`HorizontalPulsingBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_HorizontalPulsingBox), [`Rectangle`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Rectangle), [`Battery`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Battery), [`Globe`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Globe), [`SingleCircle`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_SingleCircle), [`SlicedCircle`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_SlicedCircle), [`DoubleCircle`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_DoubleCircle), [`ECG`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_ECG), [`Print`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Print), [`Box`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Box), [`Gear`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Gear), [`Movie Timer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_MovieTimer), [`ZoomingTarget`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_ZoomingTarget), [`RollingBall`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_RollingBall), [`Cupertino`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Cupertino) and [`Material`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Material).
-
-N> [`Material`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Material) animation support has not been provided for UWP Platform.
+N> Note that the [`Material`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.AnimationTypes.html#Syncfusion_SfBusyIndicator_XForms_AnimationTypes_Material) animation is not supported on the UWP platform.
{% tabs %}
@@ -64,6 +62,6 @@ namespace GettingStarted
{% endtabs %}
-The following gif image contains the types of animation in BusyIndicator.
+The following GIF showcases the various animations available in the BusyIndicator.

diff --git a/Xamarin/Busy-Indicator/Duration.md b/Xamarin/Busy-Indicator/Duration.md
index dbccf5c5b..6eabeb0c9 100644
--- a/Xamarin/Busy-Indicator/Duration.md
+++ b/Xamarin/Busy-Indicator/Duration.md
@@ -1,16 +1,15 @@
---
layout: post
-title: Animation Duration in Xamarin Busy Indicator control | Syncfusion
-description: Learn here all about Animation Duration support in Syncfusion Xamarin Busy Indicator (SfBusyIndicator) control and more.
-platform: xamarin
-control: BusyIndicator
+title: Animation Duration in Xamarin Busy Indicator Control | Syncfusion
+description: Discover the animation duration support in Syncfusion Xamarin Busy Indicator (SfBusyIndicator) control.
+platform: Xamarin
+control: SfBusyIndicator
documentation: ug
---
-# Animation Duration in Xamarin Busy Indicator (SfBusyIndicator)
-## Animation Duration in Xamarin BusyIndicator (SfBusyIndicator)
+# Animation Duration in Xamarin Busy Indicator (SfBusyIndicator)
-The [`Duration`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_Duration) property of [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) indicates timeline for completing one animation cycle. Setting smaller duration value accelerates animation speed.
+The [`Duration`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_Duration) property of the [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) specifies the time taken to complete one animation cycle. A smaller duration value results in faster animation speed.
{% tabs %}
diff --git a/Xamarin/Busy-Indicator/Getting-Started.md b/Xamarin/Busy-Indicator/Getting-Started.md
index 0ae35a085..eaac6a775 100644
--- a/Xamarin/Busy-Indicator/Getting-Started.md
+++ b/Xamarin/Busy-Indicator/Getting-Started.md
@@ -1,39 +1,38 @@
---
layout: post
-title: Getting Started with Xamarin Busy Indicator control | Syncfusion
-description: Learn here about getting started with Syncfusion Xamarin Busy Indicator (SfBusyIndicator) control, its elements and more.
-platform: xamarin
-control: BusyIndicator
+title: Getting Started with Xamarin Busy Indicator Control | Syncfusion
+description: Learn how to get started with the Syncfusion Xamarin Busy Indicator (SfBusyIndicator) control, including its features and setup.
+platform: Xamarin
+control: SfBusyIndicator
documentation: ug
---
# Getting Started with Xamarin Busy Indicator (SfBusyIndicator)
-## Getting started with Xamarin Busy Indicator(SfBusyIndicator)
+## Introduction
-This section explains you the steps to configure a [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) control in a real-time scenario and also provides a walk-through on some of the customization features available in [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) control.
+This guide outlines how to configure and integrate the [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) in real-time applications, highlighting customization options available within the control.
+## Assembly Deployment
-## Assembly deployment
+After installing [Essential Studio® for Xamarin](https://www.syncfusion.com/downloads/xamarin), locate the required assemblies in the installation directory under {Syncfusion Essential Studio Installed location} \Essential Studio\\{Version #}\Xamarin\lib.
-After installing [Essential Studio® for Xamarin](https://www.syncfusion.com/downloads/xamarin), you can find all the required assemblies in the installation folders, {Syncfusion Essential Studio Installed location} \Essential Studio\\{Version #}\Xamarin\lib.
+Example: `C:\Program Files (x86)\Syncfusion\Essential Studio\19.1.0.54\Xamarin\lib`
-E.g.: C:\Program Files (x86) \Syncfusion\Essential Studio\19.1.0.54\Xamarin\lib
+N> On a Mac, assemblies can be found in the unzipped package location: Documents/Syncfusion/{Version #}/Xamarin/lib.
-N> Assemblies can be found in unzipped package location(Documents/Syncfusion/{Version #}/Xamarin/lib) in Mac.
+## Adding SfBusyIndicator Reference
-## Adding SfBusyIndicator reference
+The [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) reference can be added using the following methods:
-You can add [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) reference using one of the following methods:
-
-**Method 1: Adding SfBusyIndicator reference from nuget.org**
-
-Syncfusion Xamarin components are available in [nuget.org](https://www.nuget.org/). To add SfBusyIndicator to your project, open the NuGet package manager in Visual Studio, search for [Syncfusion.Xamarin.SfBusyIndicator](https://www.nuget.org/packages/Syncfusion.Xamarin.SfBusyIndicator), and then install it.
+**Method 1: NuGet Package Manager**
+Syncfusion Xamarin components are available on [nuget.org](https://www.nuget.org/). To add SfBusyIndicator, open the NuGet package manager in Visual Studio, search for [Syncfusion.Xamarin.SfBusyIndicator](https://www.nuget.org/packages/Syncfusion.Xamarin.SfBusyIndicator), and install it.

-N> Install the same version of [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) NuGet in all the projects.
+N> Ensure that the same version of the [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) NuGet package is installed across all projects.
-**Method 2: Adding SfBusyIndicator reference from toolbox**
+**Method 2: Xamarin Toolbox**
+The Syncfusion Xamarin Toolbox allows you to drag the [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) control directly onto your XAML page. It will automatically install the required NuGet packages and add the necessary namespace. Refer to [Toolbox](https://help.syncfusion.com/xamarin/utility#toolbox) for installation details.
Syncfusion also provides Xamarin Toolbox. Using this toolbox, you can drag the [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) control to the XAML page. It will automatically install the required NuGet packages and add the namespace to the page. To install Syncfusion Xamarin Toolbox, refer to [Toolbox](https://help.syncfusion.com/xamarin/utility#toolbox).
@@ -70,7 +69,7 @@ I> Starting with v16.2.0.x, if you reference Syncfusion assemblies from the tria
To use [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) inside an application, each platform application must initialize the SfBusyIndicator renderer. This initialization step varies from platform to platform and is discussed in the following sections.
-### Android and UWP
+### Android and UWP
The Android and UWP launches the [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) without any initialization and is enough to only initialize the Xamarin.Forms Framework to launch the application
diff --git a/Xamarin/Busy-Indicator/Make-Busy-Animation-Idle.md b/Xamarin/Busy-Indicator/Make-Busy-Animation-Idle.md
index 0a502f527..a2f3a5fb9 100644
--- a/Xamarin/Busy-Indicator/Make-Busy-Animation-Idle.md
+++ b/Xamarin/Busy-Indicator/Make-Busy-Animation-Idle.md
@@ -1,16 +1,14 @@
---
layout: post
title: Make Busy Animation Idle in Xamarin Busy Indicator | Syncfusion
-description: Learn here all about Make Busy Animation Idle support in Syncfusion Xamarin Busy Indicator (SfBusyIndicator) control and more.
-platform: xamarin
-control: BusyIndicator
+description: Discover how to make the busy animation idle in the Syncfusion Xamarin Busy Indicator (SfBusyIndicator) control.
+platform: Xamarin
+control: SfBusyIndicator
documentation: ug
---
# Make Busy Animation Idle in Xamarin Busy Indicator (SfBusyIndicator)
-## Make Busy Animation Idle in Xamarin BusyIndicator(SfBusyIndicator)
-
-[`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) control provides support to determine whether an animation needs to be executed or not. Setting the [`IsBusy`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_IsBusy) property to false will stop the animation and removes the control from view.
+The [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) control allows developers to determine if an animation should be executed. By setting the [`IsBusy`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_IsBusy) property to `false`, the animation will stop, and the control will be removed from the view.
{% tabs %}
@@ -64,6 +62,4 @@ namespace GettingStarted
{% endtabs %}
-N> The default value is true.
-
-
+N> The default value for the `IsBusy` property is `true`.
diff --git a/Xamarin/Busy-Indicator/Overview.md b/Xamarin/Busy-Indicator/Overview.md
index 7d1ea891d..6280f2726 100644
--- a/Xamarin/Busy-Indicator/Overview.md
+++ b/Xamarin/Busy-Indicator/Overview.md
@@ -1,22 +1,22 @@
---
layout: post
-title: About Xamarin Busy Indicator control | Syncfusion
-description: Learn here all about introduction of Syncfusion Xamarin Busy Indicator (SfBusyIndicator) control, its elements and more.
-platform: xamarin
-control: BusyIndicator
+title: About Xamarin Busy Indicator Control | Syncfusion
+description: Discover the Syncfusion Xamarin Busy Indicator (SfBusyIndicator) control, its features, and implementations.
+platform: Xamarin
+control: SfBusyIndicator
documentation: ug
---
# Xamarin Busy Indicator (SfBusyIndicator) Overview
-The Essential [Xamarin BusyIndicator](https://www.syncfusion.com/xamarin-ui-controls/xamarin-busy-indicator) control includes over 10 built-in animations that can be displayed within your applications. It can be used to indicate busy status during app loading, data processing, etc.
+The [Xamarin BusyIndicator](https://www.syncfusion.com/xamarin-ui-controls/xamarin-busy-indicator) is a versatile control offering over 10 built-in animations to visualize busy status within applications. It is ideal for indicating loading processes, data processing activities, and more.

## Key Features
-* Provides 10 built-in busy indicator animations
-* Supports to show/hide busy indicator.
-* Displays busy text with animation.
-* Provides simple and easy options to size the control.
-* Provides option to adjust the animation speed.
\ No newline at end of file
+* Offers over 10 built-in busy indicator animations.
+* Supports showing and hiding the busy indicator easily.
+* Displays busy text alongside animations.
+* Provides straightforward options for resizing the control.
+* Allows adjustments to animation speed for customization.
diff --git a/Xamarin/Busy-Indicator/Set-Header.md b/Xamarin/Busy-Indicator/Set-Header.md
index 74ed990d0..664389d06 100644
--- a/Xamarin/Busy-Indicator/Set-Header.md
+++ b/Xamarin/Busy-Indicator/Set-Header.md
@@ -1,18 +1,16 @@
---
layout: post
-title: Set Header in Xamarin Busy Indicator control | Syncfusion
-description: Learn here all about Set Header support in Syncfusion Xamarin Busy Indicator (SfBusyIndicator) control and more.
-platform: xamarin
-control: BusyIndicator
+title: Set Header in Xamarin Busy Indicator Control | Syncfusion
+description: Explore how to set headers in the Syncfusion Xamarin Busy Indicator (SfBusyIndicator) control.
+platform: Xamarin
+control: SfBusyIndicator
documentation: ug
---
# Set Header in Xamarin Busy Indicator (SfBusyIndicator)
-## Set Header in Xamarin Busy Indicator (SfBusyIndicator)
-
## Title
-[`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) provides option to set the text that indicates the information related to loading. This can be done using [`Title`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_Title) property.
+The [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) control allows you to set informative text related to loading processes using the [`Title`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_Title) property.
{% tabs %}
@@ -66,7 +64,7 @@ namespace GettingStarted
## TextColor
-[`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) provides options to change the color of the text. The color of the text can be changed using the [`TextColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_TextColor) property.
+The `SfBusyIndicator` provides the ability to customize the color of the text using the [`TextColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_TextColor) property.
{% tabs %}
@@ -122,7 +120,7 @@ namespace GettingStarted
## TextSize
-[`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) provides options to change the size of the text. The size of the text can be changed using the [`TextSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_TextSize) property.
+You can adjust the text size in the `SfBusyIndicator` using the [`TextSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_TextSize) property.
{% tabs %}
@@ -180,7 +178,7 @@ namespace GettingStarted
## TitlePlacement
-[`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) provides options to set the [`Title`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_Title) at the top or bottom of the Busy Indicator. The [`Title`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_Title) can be set using the [`TitlePlacement`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_TitlePlacement) property. When the [`Title`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_Title) is not needed, set the [`TitlePlacement`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_TitlePlacement) property of [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) to [`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.TitlePlacement.html#Syncfusion_SfBusyIndicator_XForms_TitlePlacement_None).
+The `SfBusyIndicator` offers functionality to position the [`Title`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_Title) at the top or bottom of the control using the [`TitlePlacement`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_TitlePlacement) property. Set [`TitlePlacement`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_TitlePlacement) to [`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.TitlePlacement.html#Syncfusion_SfBusyIndicator_XForms_TitlePlacement_None) if the title is unnecessary.
{% tabs %}
diff --git a/Xamarin/Busy-Indicator/Sizing.md b/Xamarin/Busy-Indicator/Sizing.md
index 03a65e8bd..ed9c8c6c8 100644
--- a/Xamarin/Busy-Indicator/Sizing.md
+++ b/Xamarin/Busy-Indicator/Sizing.md
@@ -1,16 +1,15 @@
---
layout: post
-title: Sizing in Xamarin Busy Indicator control | Syncfusion
-description: Learn here all about Sizing support in Syncfusion Xamarin Busy Indicator (SfBusyIndicator) control and more.
-platform: xamarin
-control: BusyIndicator
+title: Sizing in Xamarin Busy Indicator Control | Syncfusion
+description: Understand sizing options in the Syncfusion Xamarin Busy Indicator (SfBusyIndicator) control.
+platform: Xamarin
+control: SfBusyIndicator
documentation: ug
---
-# Sizing in Xamarin Busy Indicator (SfBusyIndicator)
-## Sizing in Xamarin BusyIndicator (SfBusyIndicator)
+# Sizing in Xamarin Busy Indicator (SfBusyIndicator)
-Drawing size can be customized in [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html). [`ViewBoxHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_ViewBoxHeight) and [`ViewBoxWidth`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_ViewBoxWidth) properties can be used to set height and width of the Indicator.
+The size of the drawing area in the [`SfBusyIndicator`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html) can be customized using the [`ViewBoxHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_ViewBoxHeight) and [`ViewBoxWidth`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfBusyIndicator.XForms.SfBusyIndicator.html#Syncfusion_SfBusyIndicator_XForms_SfBusyIndicator_ViewBoxWidth) properties, which allow you to set the height and width of the indicator.
{% tabs %}
diff --git a/Xamarin/Carousel-View/Accessibility.md b/Xamarin/Carousel-View/Accessibility.md
index 32bd2e106..fa5fecb74 100644
--- a/Xamarin/Carousel-View/Accessibility.md
+++ b/Xamarin/Carousel-View/Accessibility.md
@@ -1,20 +1,20 @@
---
-layout : post
-title: Accessibility in Xamarin Carousel View control | Syncfusion
-description: Learn here all about Accessibility support in Syncfusion Xamarin Carousel View (SfCarousel) control and more.
-platform : xamarin.Forms
-control : SfCarousel
-documentation : ug
+layout: post
+title: Accessibility in Xamarin Carousel View Control | Syncfusion
+description: Discover the accessibility support offered by the Syncfusion Xamarin Carousel View (SfCarousel) control.
+platform: Xamarin.Forms
+control: SfCarousel
+documentation: ug
---
# Accessibility in Xamarin Carousel View (SfCarousel)
-The [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control has built-in `AutomationId` for inner elements. The `AutomationId` API allows the automation framework to find and interact with the inner elements of the [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control. To keep unique AutomationId, these inner elements' AutomationIds are updated based on the control's `AutomationId`.
+The [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control provides built-in `AutomationId` for its inner elements. This `AutomationId` API enables automation frameworks to locate and interact seamlessly with the inner elements of the [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control. Inner elements' AutomationIds are uniquely updated based on the control's `AutomationId` to ensure uniqueness.
- For example, if you set SfCarouselItem's `AutomationId` as "Person", then the automation framework will interact the fourth carousel item as "Person SfCarouselItem 4 of 6" (6 denotes the total count).
+For example, if you set a SfCarouselItem's `AutomationId` to "Person," the automation framework will reference the fourth carousel item as "Person SfCarouselItem 4 of 6" (where 6 denotes the total count).
- The following screenshot illustrates the AutomationIds of inner elements. If the SfCarousel's `AutomationId` as Gallery, then the Automation framework will interact the LoadMore as "Gallery LoadMore. Tap to load more items". You cannot interact with the carousel item when you want to select an index that is not visible in the view.
+The following screenshot illustrates the AutomationIds of inner elements. If the SfCarousel's `AutomationId` is set to "Gallery," the automation framework will identify the LoadMore as "Gallery LoadMore. Tap to load more items." Note that interaction with a carousel item is restricted if you attempt to select an index not visibly displayed.
- N> You cannot provide AutomationId when the carousel item is populated with custom template.
+N> Please note that `AutomationId` cannot be provided when the carousel item is populated using a custom template.

diff --git a/Xamarin/Carousel-View/Animation.md b/Xamarin/Carousel-View/Animation.md
index af51d9e01..7112b5d35 100644
--- a/Xamarin/Carousel-View/Animation.md
+++ b/Xamarin/Carousel-View/Animation.md
@@ -1,15 +1,15 @@
---
-layout : post
-title: Animation in Xamarin Carousel View control | Syncfusion
-description: Learn here all about Animation support in Syncfusion Xamarin Carousel View (SfCarousel) control and more.
-platform : xamarin
-control : Carousel
-documentation : ug
+layout: post
+title: Animation in Xamarin Carousel View Control | Syncfusion
+description: Explore the animation support provided by the Syncfusion Xamarin Carousel View (SfCarousel) control.
+platform: Xamarin
+control: Carousel
+documentation: ug
---
# Animation in Xamarin Carousel View (SfCarousel)
-The [`Duration`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_Duration) property of the [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control is used to specify the time taken to move an item to the selected item position. The duration is specified in seconds. The default value is 300 ms.
+The [`Duration`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_Duration) property of the [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control dictates the timeframe during which an item moves to the selected item position. Specified in milliseconds, this property facilitates smooth transitions. The default value is 300 ms.
{% tabs %}
diff --git a/Xamarin/Carousel-View/Linear-Arrangement.md b/Xamarin/Carousel-View/Linear-Arrangement.md
index 7d87ff1f0..8da64ae7b 100644
--- a/Xamarin/Carousel-View/Linear-Arrangement.md
+++ b/Xamarin/Carousel-View/Linear-Arrangement.md
@@ -1,15 +1,15 @@
---
-layout : post
-title: Linear Arrangement in Xamarin Carousel View control | Syncfusion
-description: Learn here all about Linear Arrangement support in Syncfusion Xamarin Carousel View (SfCarousel) control and more.
-platform : xamarin
-control : Carousel
-documentation : ug
+layout: post
+title: Linear Arrangement in Xamarin Carousel View Control | Syncfusion
+description: Explore the linear arrangement support in Syncfusion Xamarin Carousel View (SfCarousel) control.
+platform: Xamarin
+control: SfCarousel
+documentation: ug
---
# Linear Arrangement in Xamarin Carousel View (SfCarousel)
-The Carousel items can be populated in the view in a stacked linear layout by setting the [`ViewMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_ViewMode) property to [`Linear`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.ViewMode.html#Syncfusion_SfCarousel_XForms_ViewMode_Linear). The present option is [`Default`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.ViewMode.html#Syncfusion_SfCarousel_XForms_ViewMode_Default).
+You can arrange carousel items in a stacked linear layout by setting the [`ViewMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_ViewMode) property to [`Linear`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.ViewMode.html#Syncfusion_SfCarousel_XForms_ViewMode_Linear). The default configuration uses [`Default`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.ViewMode.html#Syncfusion_SfCarousel_XForms_ViewMode_Default) mode.
{% tabs %}
@@ -121,9 +121,6 @@ namespace CarouselSample
{% endtabs %}
-N> It is important to include Xamarin.Android.Support.v17.Leanback library to use carousel linear mode in Android platform.
-
-
-
-
+N> For Android platform, include the Xamarin.Android.Support.v17.Leanback library to utilize carousel linear mode.
+
diff --git a/Xamarin/Carousel-View/LoadMore.md b/Xamarin/Carousel-View/LoadMore.md
index 2b1fdc235..ed441e933 100644
--- a/Xamarin/Carousel-View/LoadMore.md
+++ b/Xamarin/Carousel-View/LoadMore.md
@@ -1,29 +1,27 @@
---
-layout : post
-title: Load More in Xamarin Carousel View control | Syncfusion
-description: Learn here all about Load More support in Syncfusion Xamarin Carousel View (SfCarousel) control and more.
-platform : xamarin
-control : Carousel
-documentation : ug
+layout: post
+title: Load More in Xamarin Carousel View Control | Syncfusion
+description: Explore the Load More support in Syncfusion Xamarin Carousel View (SfCarousel) control.
+platform: Xamarin
+control: SfCarousel
+documentation: ug
---
# Load More in Xamarin Carousel View (SfCarousel)
-Virtualization can be achieved by using the Load more concept. This support is used to handle the numerous items in the carousel control. A particular items are maintained in the view port based on the [`LoadMoreItemsCount`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_LoadMoreItemsCount) property. The LoadMore view is added after the last item in the collection of carousel view. When tapping the LoadMore view, the next set of items in the collection can be added to the carousel.
+The concept of "Load More" supports virtualization, enabling the efficient handling of numerous items in the carousel control. By using the [`LoadMoreItemsCount`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_LoadMoreItemsCount) property, specific items are maintained within the viewport. The LoadMore view is appended after the last item in the carousel collection and tapping it will add the next set of items.
-The following properties are used to achieve this support:
+The following properties facilitate this feature:
-* [`AllowLoadMore`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_AllowLoadMore)
-
-* [`LoadMoreItemsCount`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_LoadMoreItemsCount)
-
-* [`LoadMoreView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_LoadMoreView)
+* [`AllowLoadMore`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_AllowLoadMore)
+* [`LoadMoreItemsCount`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_LoadMoreItemsCount)
+* [`LoadMoreView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_LoadMoreView)
## AllowLoadMore
-By enabling the [`AllowLoadMore`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_AllowLoadMore) property, the LoadMore support works in the carousel view.
+Enabling the [`AllowLoadMore`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_AllowLoadMore) property activates the Load More support in the carousel view.
-N>The default value of the [`AllowLoadMore`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_AllowLoadMore) property is false.
+N> By default, the [`AllowLoadMore`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_AllowLoadMore) property is set to false.
{% tabs %}
@@ -140,9 +138,9 @@ namespace CarouselSample
## LoadMoreItemsCount
-Number of items can be maintained in the carousel control by using the [`LoadMoreItemsCount`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_LoadMoreItemsCount) property. By using the [`LoadMoreItemsCount`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_LoadMoreItemsCount) property, numerous items can be separated.
+The carousel can maintain a certain number of items using the [`LoadMoreItemsCount`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_LoadMoreItemsCount) property. This property allows the separation of numerous items.
-N>The default value of the [`LoadMoreItemsCount`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_LoadMoreItemsCount) property is 3.
+N> The default value of the [`LoadMoreItemsCount`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_LoadMoreItemsCount) property is 3.
{% tabs %}
@@ -420,13 +418,13 @@ namespace CarouselSample
{% endtabs %}
-
+
-You can find the complete Load More sample from this [link.](https://github.com/SyncfusionExamples/load-more-carousel)
+Find the complete Load More sample from this [link](https://github.com/SyncfusionExamples/load-more-carousel).
-## LoadMore method
+## LoadMore Method
-To load more items programmatically, [`LoadMore`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_LoadMore) method can be called which loads the items dynamically to the UI based on the [`LoadMoreItemsCount`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_LoadMoreItemsCount) API value.
+To programmatically load more items, call the [`LoadMore`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_LoadMore) method. This dynamically adds items to the UI based on the [`LoadMoreItemsCount`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_LoadMoreItemsCount) API value.
{% tabs %}
diff --git a/Xamarin/Carousel-View/Populating-Data.md b/Xamarin/Carousel-View/Populating-Data.md
index d5c419885..f6cc7b543 100644
--- a/Xamarin/Carousel-View/Populating-Data.md
+++ b/Xamarin/Carousel-View/Populating-Data.md
@@ -1,28 +1,24 @@
---
-layout : post
-title: Populating Data in Xamarin Carousel View control | Syncfusion
-description: Learn here all about Populating Data support in Syncfusion Xamarin Carousel View (SfCarousel) control and more.
-platform : xamarin
-control : Carousel
-documentation : ug
+layout: post
+title: Populating Data in Xamarin Carousel View Control | Syncfusion
+description: Discover how to populate data in the Syncfusion Xamarin Carousel View (SfCarousel) control.
+platform: Xamarin
+control: SfCarousel
+documentation: ug
---
# Populating Data in Xamarin Carousel View (SfCarousel)
-[`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control, supports binding to different data sources such as IList Data Source, Observable Collection Data Source.
+The [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control supports binding to various data sources, such as `IList` and `ObservableCollection`.
## Through Binding
-Items can be populated in [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control through data source and applying custom template as explained below.
+Items can be populated in the [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control through data sources and by applying custom templates as explained below.
-### Create a Model with Data
-
-[`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) items can be populated with a collection of image data. For example, a user may wants to create a [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control which will display a list of images.
-
-The [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) model looks as follows.
+### Create a Data Model
+[`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) items can be populated using a collection of image data. For instance, a user may want to create a [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control to display a list of images. Below is an example model:
{% highlight C# %}
-
namespace CarouselSample
{
public class CarouselModel
@@ -43,7 +39,7 @@ namespace CarouselSample
{% endhighlight %}
-Populate carousel items collection in View model with the image data. The below code works when the images are placed within the application folder for Android, iOS and UWP with build action Android Resource, Bundled Resource and Content respectively.
+Using the above model, populate the carousel items collection in the ViewModel with image data. This code works when images are placed within the application folder for Android, iOS, and UWP, with build actions Android Resource, Bundled Resource, and Content, respectively.
{% highlight C# %}
@@ -72,12 +68,11 @@ namespace CarouselSample
{% endhighlight %}
-N> Images can also be referred in PCL and from website URL as [instructed](https://developer.xamarin.com/guides/xamarin-forms/working-with/images/)
-
+N> Images can also be referenced in PCL and from a website URL as [instructed here](https://developer.xamarin.com/guides/xamarin-forms/working-with/images/).
-### Binding the Data with Custom Template
+### Binding Data with a Custom Template
-[`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) provides support to add a custom view as carousel items by designing a view inside its [`ItemTemplate`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_ItemTemplate). This template will be applied for all its items and its data will be binded.
+[`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) allows adding a custom view as carousel items by designing a view within its [`ItemTemplate`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_ItemTemplate). This template is applied to all items.
{% tabs %}
@@ -186,7 +181,7 @@ namespace CarouselSample
{% endhighlight %}
{% endtabs %}
-* Now set the `BindingContext` for the items collection in code behind.
+- Set the `BindingContext` for the items collection in the code behind.
{% highlight C# %}
@@ -196,7 +191,7 @@ namespace CarouselSample
## Through Carousel Item
-Different set of views can be provided to every items through [`ItemContent`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarouselItem.html#Syncfusion_SfCarousel_XForms_SfCarouselItem_ItemContent) property available in [`SfCarouselItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarouselItem.html) class.
+Different sets of views can be provided for each item using the [`ItemContent`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarouselItem.html#Syncfusion_SfCarousel_XForms_SfCarouselItem_ItemContent) property available in the [`SfCarouselItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarouselItem.html) class.
{% highlight C# %}
@@ -234,7 +229,7 @@ namespace CarouselSample
{% endhighlight %}
-and also carousel provides a support to display only the Image data with [`Image`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarouselItem.html#Syncfusion_SfCarousel_XForms_SfCarouselItem_ImageName) property in [`SfCarouselItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarouselItem.html) class.
+Additionally, carousel provides support to display only the image data with the [`Image`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarouselItem.html#Syncfusion_SfCarousel_XForms_SfCarouselItem_ImageName) property in the [`SfCarouselItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarouselItem.html) class.
{% highlight C# %}
@@ -271,7 +266,4 @@ namespace CarouselSample
{% endhighlight %}
-
-Similar way every item can be created and customized in case of different carousel item view is needed.
-
-
+Each item can be customized for specific use cases requiring different views for carousel items.
diff --git a/Xamarin/Carousel-View/SwipeEvents.md b/Xamarin/Carousel-View/SwipeEvents.md
index 7759151c6..27bdc2148 100644
--- a/Xamarin/Carousel-View/SwipeEvents.md
+++ b/Xamarin/Carousel-View/SwipeEvents.md
@@ -1,9 +1,9 @@
---
layout: post
-title: Swipe Events in Xamarin Carousel View control | Syncfusion
-description: Learn here all about Swipe Events support in Syncfusion Xamarin Carousel View (SfCarousel) control and more.
-platform: xamarin
-control: Carousel
+title: Swipe Events in Xamarin Carousel View Control | Syncfusion
+description: Explore the swipe events supported by the Syncfusion Xamarin Carousel View (SfCarousel) control.
+platform: Xamarin
+control: SfCarousel
documentation: ug
---
@@ -11,13 +11,13 @@ documentation: ug
## Swipe Start
-The [`SwipeStarted`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_SwipeStarted) event will be triggered when swipe gesture is started.
+The [`SwipeStarted`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_SwipeStarted) event is triggered when a swipe gesture begins.
-[`SwipeStartedEventArgs`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SwipeStartedEventArgs.html) contains [`IsSwipeLeft`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SwipeStartedEventArgs.html#Syncfusion_SfCarousel_XForms_SwipeStartedEventArgs_IsSwipedLeft) value, which denotes whether the swipe direction is from left side or not.
+[`SwipeStartedEventArgs`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SwipeStartedEventArgs.html) includes the [`IsSwipeLeft`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SwipeStartedEventArgs.html#Syncfusion_SfCarousel_XForms_SwipeStartedEventArgs_IsSwipedLeft) property, indicating whether the swipe direction is from the left side.
## Swipe End
-The [`SwipeEnded`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_SwipeEnded) event can be triggered after the swiping completed in the carousel items.
+The [`SwipeEnded`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_SwipeEnded) event is triggered when swiping completes on the carousel items.
{% tabs %}
@@ -145,6 +145,6 @@ namespace CarouselSample
{% endtabs %}
-N> The [`SwipeStarted`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_SwipeStarted) and [`SwipeEnded`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_SwipeEnded) events are supported only on the Android and iOS platforms.
+N> The [`SwipeStarted`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_SwipeStarted) and [`SwipeEnded`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_SwipeEnded) events are supported on Android and iOS platforms only.

diff --git a/Xamarin/Carousel-View/Transformation.md b/Xamarin/Carousel-View/Transformation.md
index f6523ac36..041b11b5c 100644
--- a/Xamarin/Carousel-View/Transformation.md
+++ b/Xamarin/Carousel-View/Transformation.md
@@ -1,21 +1,21 @@
---
-layout : post
-title: Transformation in Xamarin Carousel View control | Syncfusion
-description: Learn here all about Transformation support in Syncfusion Xamarin Carousel View (SfCarousel) control and more.
-platform : xamarin
-control : Carousel
-documentation : ug
+layout: post
+title: Transformation in Xamarin Carousel View Control | Syncfusion
+description: Explore the transformation support in Syncfusion Xamarin Carousel View (SfCarousel) control.
+platform: Xamarin
+control: SfCarousel
+documentation: ug
---
# Transformation in Xamarin Carousel View (SfCarousel)
-The [`Offset`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_Offset) between selected and unselected item can be customized in [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control. And also the items can be scaled to the specified value.
+The [`Offset`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_Offset) property in the [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control allows customization of the space between selected and unselected items. Items can also be scaled to a specified value.
-## Tilt Non Selected Items
+## Tilt Non-Selected Items
The [`RotationAngle`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_RotationAngle) property in the [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control is used to tilt all the unselected items in a specified angle.
-N> If the angle value is positive, then the rotation is in the clockwise direction. If the angle value is negative, the rotation is in the counterclockwise direction.
+N> A positive angle value indicates rotation in the clockwise direction, while a negative value rotates counterclockwise.
{% tabs %}
@@ -139,9 +139,9 @@ namespace CarouselSample
{% endtabs %}
-
+
-## Set Gap between Selected and unselected Item
+## Set Gap Between Selected and Unselected Item
Distance between the selected item and other items can be customized by using [`SelectedItemOffset`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_SelectedItemOffset) property of the [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control.
@@ -315,10 +315,9 @@ namespace CarouselSample

-## Spacing between the Items in Linear mode
-
-Spacing of all the items in Linear mode can be determined by using [`ItemSpacing`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_ItemSpacing) property.
+## Spacing Between Items in Linear Mode
+The [`ItemSpacing`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_ItemSpacing) property determines the spacing between items in Linear mode.
{% tabs %}
{% highlight xaml %}
diff --git a/Xamarin/Carousel-View/UIVirtualization.md b/Xamarin/Carousel-View/UIVirtualization.md
index 144769285..a10ca20e1 100644
--- a/Xamarin/Carousel-View/UIVirtualization.md
+++ b/Xamarin/Carousel-View/UIVirtualization.md
@@ -1,25 +1,24 @@
---
-layout : post
-title: UIVirtualization in Xamarin Carousel View control | Syncfusion
-description: Learn here all about UIVirtualization support in Syncfusion Xamarin Carousel View (SfCarousel) control and more.
-platform : xamarin
-control : Carousel
-documentation : ug
+layout: post
+title: UI Virtualization in Xamarin Carousel View Control | Syncfusion
+description: Discover the UI virtualization support in Syncfusion Xamarin Carousel View (SfCarousel) control.
+platform: Xamarin
+control: SfCarousel
+documentation: ug
---
-# UIVirtualization in Xamarin Carousel View (SfCarousel)
+# UI Virtualization in Xamarin Carousel View (SfCarousel)
-In UI virtualization concept, only the number of items that can be adaptable to the viewport of our device are arranged. Even, if the numerous items have been added to the collection, it loads only the viewport adaptable count of the carousel Items. Items are added at the right of the view when swiping the countable items in forward direction. At the same time, same number of items are removed at the left of the view for maintaining the same viewport items count. Similarly, items are added at the left of the view when swiping in backward direction for maintaining the same viewport items count. At the time, the same number of items are removed at the right of the view. Using this mechanism, virtualization concept is achieved in the carousel control.
-
-The following property has been used in UIVirtualization support:
+UI Virtualization allows the `SfCarousel` to efficiently manage resource usage by only rendering the number of items visible in the viewport. Even if a collection contains numerous items, only those that fit within the viewport are loaded. As users swipe forward, new items appear on the right, while an equal number of items are removed from the left to maintain the count. Similarly, when swiping backward, items are added from the left while the same number is removed from the right. This mechanism optimizes performance in the carousel control.
+The primary property used for UI virtualization is:
* [`EnableVirtualization`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_EnableVirtualization)
## EnableVirtualization
-UI Virtualization concept is achieved by enabling the [`EnableVirtualization`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_EnableVirtualization) property.
+Enabling the [`EnableVirtualization`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_EnableVirtualization) property activates UI virtualization for the carousel view.
-N> The default value of the [`EnableVirtualization`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_EnableVirtualization) property is false.
+N> By default, the [`EnableVirtualization`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_EnableVirtualization) property is set to `false`.
{% tabs %}
@@ -134,6 +133,6 @@ namespace CarouselSample
{% endtabs %}
-
+
-You can find the complete UIVirtualization sample from this [link.](https://github.com/SyncfusionExamples/ui-virtualization-carousel)
+Access the complete UI Virtualization sample from this [link](https://github.com/SyncfusionExamples/ui-virtualization-carousel).
diff --git a/Xamarin/Carousel-View/getting-started.md b/Xamarin/Carousel-View/getting-started.md
index a62aca0ec..57f544935 100644
--- a/Xamarin/Carousel-View/getting-started.md
+++ b/Xamarin/Carousel-View/getting-started.md
@@ -1,43 +1,43 @@
---
layout: post
-title: Getting Started with Xamarin Carousel View control | Syncfusion
-description: Learn here about getting started with Syncfusion Xamarin Carousel View (SfCarousel) control, its elements and more.
-platform: xamarin
-control: Carousel
+title: Getting Started with Xamarin Carousel View Control | Syncfusion
+description: Discover how to get started with the Syncfusion Xamarin Carousel View (SfCarousel) control, including its elements and more.
+platform: Xamarin
+control: SfCarousel
documentation: ug
---
# Getting Started with Xamarin Carousel View (SfCarousel)
-This section explains how to showcase a Gallery of photos along with a Title using [Xamarin Carousel View](https://www.syncfusion.com/xamarin-ui-controls/xamarin-carousel-view) (SfCarousel) Control.
+This guide explains how to showcase a gallery of photos with titles using the [Xamarin Carousel View](https://www.syncfusion.com/xamarin-ui-controls/xamarin-carousel-view) (SfCarousel) Control.
-## Assembly deployment
+## Assembly Deployment
-After installing [Essential Studio® for Xamarin](https://www.syncfusion.com/downloads/xamarin), you can find all the required assemblies in the installation folders, {Syncfusion Essential Studio Installed location} \Essential Studio\\{Version #}\Xamarin\lib.
+After installing [Essential Studio® for Xamarin](https://www.syncfusion.com/downloads/xamarin), you will find all the necessary assemblies in the installed location under {Syncfusion Essential Studio Installed location} \Essential Studio\\{Version #}\Xamarin\lib.
E.g.: C:\Program Files (x86) \Syncfusion\Essential Studio\19.1.0.54\Xamarin\lib
N> Assemblies can be found in unzipped package location(Documents/Syncfusion/{Version #}/Xamarin/lib) in Mac.
-## Adding SfCarousel reference
+## Adding SfCarousel References
-You can add [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) reference using one of the following methods:
+You can add a reference to the [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) using one of the following methods:
-**Method 1: Adding SfCarousel reference from nuget.org**
+### Method 1: Adding SfCarousel Reference from NuGet.org
-Syncfusion Xamarin components are available in [nuget.org](https://www.nuget.org/). To add [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) to your project, open the NuGet package manager in Visual Studio, search for [Syncfusion.Xamarin.SfCarousel](https://www.nuget.org/packages/Syncfusion.Xamarin.SfCarousel), and then install it.
+Syncfusion Xamarin components are available on [nuget.org](https://www.nuget.org/). To add [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) to your project, open the NuGet package manager in Visual Studio, search for [Syncfusion.Xamarin.SfCarousel](https://www.nuget.org/packages/Syncfusion.Xamarin.SfCarousel), and install it.

-N> Install the same version of [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) NuGet in all the projects.
+N> Ensure the same version of [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) NuGet is installed in all projects.
-**Method 2: Adding SfCarousel reference from toolbox**
+### Method 2: Adding SfCarousel Reference from Toolbox
-Syncfusion also provides Xamarin Toolbox. Using this toolbox, you can drag the [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control to the XAML page. It will automatically install the required NuGet packages and add the namespace to the page. To install Syncfusion Xamarin Toolbox, refer to [Toolbox](https://help.syncfusion.com/xamarin/utility#toolbox).
+Syncfusion offers a Xamarin Toolbox. Using this toolbox, you can drag the [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) control onto the XAML page, which will automatically install the required NuGet packages and add the namespace. To install Syncfusion Xamarin Toolbox, refer to [Toolbox](https://help.syncfusion.com/xamarin/utility#toolbox).
-**Method 3: Adding SfCarousel assemblies manually from the installed location**
+### Method 3: Adding SfCarousel Assemblies Manually from Installed Location
-If you prefer to manually reference the assemblies instead referencing from NuGet, add the following assemblies in respective projects.
+For manual referencing of assemblies rather than using NuGet, add the following assemblies to their respective projects.
Location: {Installed location}/{version}/Xamarin/lib
@@ -69,7 +69,7 @@ I> Starting with v16.2.0.x, if you reference Syncfusion assemblies from the tria
To use [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) inside an application, each platform application must initialize the [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) renderer. This initialization step varies from platform to platform and is discussed in the following sections.
-### Android and UWP
+### Android and UWP
The Android and UWP launches the [`SfCarousel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html) without any initialization and is enough to only initialize the Xamarin.Forms Framework to launch the application
diff --git a/Xamarin/Carousel-View/how-to.md b/Xamarin/Carousel-View/how-to.md
index 0a8411a4b..649a58bdc 100644
--- a/Xamarin/Carousel-View/how-to.md
+++ b/Xamarin/Carousel-View/how-to.md
@@ -1,15 +1,15 @@
---
-layout : post
-title: Interaction in Syncfusion Carousel Control in Xamarin.
-description: Learn how to perform an operation while changing the carouselItem or Collection in Carousel for Xamarin.
-platform : xamarin
-control : Carousel
-documentation : ug
+layout: post
+title: Interaction with Syncfusion Carousel Control in Xamarin
+description: Discover how to perform operations when changing a carousel item or collection in the Carousel for Xamarin.
+platform: Xamarin
+control: SfCarousel
+documentation: ug
---
-# How to perform an operation while changing the carouselItem?
+# How to Perform Operations When Changing a Carousel Item
-We can perform operation while changing the carouselItem using [`SelectionChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_SelectionChanged) event. [`SelectionChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_SelectionChanged) event returns the index and selected carouselItem
+You can perform operations during carousel item changes using the [`SelectionChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_SelectionChanged) event. This event returns the index and the selected carousel item.
{% tabs %}
diff --git a/Xamarin/Carousel-View/overview.md b/Xamarin/Carousel-View/overview.md
index 6eb7e840c..06103aa07 100644
--- a/Xamarin/Carousel-View/overview.md
+++ b/Xamarin/Carousel-View/overview.md
@@ -1,21 +1,19 @@
---
layout: post
-title: About Xamarin Carousel View control | Syncfusion
-description: Learn here all about introduction of Syncfusion Xamarin Carousel View (SfCarousel) control, its elements and more.
-platform: xamarin
-control: Carousel
+title: About Xamarin Carousel View Control | Syncfusion
+description: Introduction to the Syncfusion Xamarin Carousel View (SfCarousel) control, its features, and more.
+platform: Xamarin
+control: SfCarousel
documentation: ug
---
# Xamarin Carousel View (SfCarousel) Overview
-The Essential Xamarin Carousel control allows navigating through image data in an interactive way so that they can be viewed or selected. Also, provides various customization options for its item arrangements.
-It has been available in Xamarin.Forms,Xamarin.Android and Xamarin.iOS platforms also.
+The Essential Xamarin Carousel control offers an interactive way to navigate through image data, allowing users to view or select items. This control supports extensive customization options for item arrangements and is available on Xamarin.Forms, Xamarin.Android, and Xamarin.iOS platforms.
+
-
+## Key Features
-## Key Features:
-
-* [`Offset`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_Offset) - Support to specify the space between the unselected items in SfCarousel.
-* [`Rotation Angle`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_RotationAngle) - Options to rotate all the items to a specified angle.
-* [`Duration`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_Duration) - Support to specify the time taken to move an item to the selected item position.
+* [`Offset`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_Offset) - Enables specifying the space between unselected items in SfCarousel.
+* [`Rotation Angle`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_RotationAngle) - Allows rotating all items to a specified angle.
+* [`Duration`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfCarousel.XForms.SfCarousel.html#Syncfusion_SfCarousel_XForms_SfCarousel_Duration) - Specifies the time taken to move an item to the selected position.
diff --git a/Xamarin/ComboBox/Accessibility.md b/Xamarin/ComboBox/Accessibility.md
index 9b1063169..be924e68e 100644
--- a/Xamarin/ComboBox/Accessibility.md
+++ b/Xamarin/ComboBox/Accessibility.md
@@ -1,18 +1,18 @@
---
-layout : post
-title: Accessibility in Xamarin ComboBox control | Syncfusion
-description: Learn here all about Accessibility support in Syncfusion Xamarin ComboBox (SfComboBox) control and more.
-platform : Xamarin.Forms
-control : SfComboBox
-documentation : ug
+layout: post
+title: Accessibility in Xamarin ComboBox Control | Syncfusion
+description: Learn here all about accessibility support in Syncfusion Xamarin ComboBox (SfComboBox) control and more.
+platform: Xamarin.Forms
+control: SfComboBox
+documentation: ug
---
# Accessibility in Xamarin ComboBox (SfComboBox)
-The [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) control has built-in `AutomationId` for inner elements. The `AutomationId` API allows the automation framework to find and interact with the inner elements of the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) control. To keep unique AutomationId, these inner elements' AutomationIds are updated based on the control's `AutomationId`.
+The [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) control has built-in `AutomationId` properties for its inner elements. The `AutomationId` API enables the automation framework to locate and interact with these elements. To ensure unique `AutomationId` values, the `AutomationId` for inner elements is updated based on the control's `AutomationId`.
- For example, If you set SfComboBox's `AutomationId` as "Employee ComboBox", then the automation framework will interact with the drop-down button as "Employee ComboBox Dropdown Button".
+For example, if you set the `AutomationId` of the SfComboBox to "Employee ComboBox", the automation framework will reference the drop-down button as "Employee ComboBox Dropdown Button".
-The following screenshot illustrates the AutomationIds of inner elements. The automation framework will interact with the dropdown for scrolling the items as "Employee ComboBox Dropdown". You can also interact with the elements inside the HeaderView and FooterView with the element's AutomationId. The Automation framework will not interact with the Input Clear Button when the [`MultiSelectMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_MultiSelectMode) is [`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.MultiSelectMode.html#Syncfusion_XForms_ComboBox_MultiSelectMode_None) and [`Delimiter`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.MultiSelectMode.html#Syncfusion_XForms_ComboBox_MultiSelectMode_Delimiter) mode.
+The following screenshot illustrates the AutomationIds of inner elements. The automation framework will refer to the dropdown for scrolling items as "Employee ComboBox Dropdown". You can also interact with elements within the HeaderView and FooterView using their `AutomationId`. Note that the automation framework will not interact with the Input Clear Button when the [`MultiSelectMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_MultiSelectMode) is set to [`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.MultiSelectMode.html#Syncfusion_XForms_ComboBox_MultiSelectMode_None) or [`Delimiter`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.MultiSelectMode.html#Syncfusion_XForms_ComboBox_MultiSelectMode_Delimiter) mode.

diff --git a/Xamarin/ComboBox/AutoSizing.md b/Xamarin/ComboBox/AutoSizing.md
index 449190aee..3c8ce05b3 100644
--- a/Xamarin/ComboBox/AutoSizing.md
+++ b/Xamarin/ComboBox/AutoSizing.md
@@ -1,7 +1,7 @@
---
layout: post
-title: AutoSizing in Xamarin ComboBox control | Syncfusion
-description: Learn here all about AutoSizing support in Syncfusion Xamarin ComboBox (SfComboBox) control and more.
+title: AutoSizing in Xamarin ComboBox Control | Syncfusion
+description: Learn about the AutoSizing support in the Syncfusion Xamarin ComboBox (SfComboBox) control among other features.
platform: Xamarin
control: SfComboBox
documentation: ug
@@ -9,9 +9,9 @@ documentation: ug
# AutoSizing in Xamarin ComboBox (SfComboBox)
-AutoSizing can be enabled in [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) control so that the control will extend its layout based on the text input.
+AutoSizing can be enabled in the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) control, allowing it to adjust its layout dynamically based on the text input.
-[`EnableAutoSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_EnableAutoSize) property is used to enable the autoSizing in [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) control. To enable the API, you need to set the [`MultiSelectMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_MultiSelectMode) as [`Token`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.MultiSelectMode.html#Syncfusion_XForms_ComboBox_MultiSelectMode_Token) and [`TokensWrapMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_TokensWrapMode) as [`Wrap`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.TokensWrapMode.html#Syncfusion_XForms_ComboBox_TokensWrapMode_Wrap). The default value of [`EnableAutoSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_EnableAutoSize) is false.
+To enable AutoSizing within the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) control, set the [`EnableAutoSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_EnableAutoSize) property to true. Note that this requires the [`MultiSelectMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_MultiSelectMode) to be set to [`Token`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.MultiSelectMode.html#Syncfusion_XForms_ComboBox_MultiSelectMode_Token) and [`TokensWrapMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_TokensWrapMode) to [`Wrap`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.TokensWrapMode.html#Syncfusion_XForms_ComboBox_TokensWrapMode_Wrap). The default setting for [`EnableAutoSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_EnableAutoSize) is false.
{% tabs %}
{% highlight xaml %}
diff --git a/Xamarin/ComboBox/ComboBox-Filtering-Options.md b/Xamarin/ComboBox/ComboBox-Filtering-Options.md
index e9b4a9bdf..9a21182e9 100644
--- a/Xamarin/ComboBox/ComboBox-Filtering-Options.md
+++ b/Xamarin/ComboBox/ComboBox-Filtering-Options.md
@@ -1,14 +1,14 @@
---
-layout : post
-title: ComboBox Filtering Options in Xamarin ComboBox control | Syncfusion
-description: Learn here all about ComboBox Filtering Options support in Syncfusion Xamarin ComboBox (SfComboBox) control and more.
-platform : Xamarin.Forms
-control : SfComboBox
-documentation : ug
+layout: post
+title: ComboBox Filtering Options in Xamarin ComboBox Control | Syncfusion
+description: Learn about the ComboBox Filtering Options support in the Syncfusion Xamarin ComboBox (SfComboBox) control and more.
+platform: Xamarin.Forms
+control: SfComboBox
+documentation: ug
---
# ComboBox Filtering Options in Xamarin ComboBox (SfComboBox)
-The combo box enables the filer option for filtering the suggestions in the drop-down.
+The ComboBox supports filtering options to narrow down the suggestions in the drop-down list.
{% tabs %}
@@ -203,9 +203,22 @@ Content = layout;

-### Filtering words that contain input text
+## Filtering Types
-Displays all the matches that contain the typed characters in control. This strategy is case in-sensitive.
+The method of string comparison for filtering suggestions can be adjusted using the [`SuggestionMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SuggestionMode) property. By default, the filtering type is [`StartsWith`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionMode.html#Syncfusion_XForms_ComboBox_SuggestionMode_StartsWith) and it is case-insensitive. The available filtering modes include:
+
+- [`StartsWith`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionMode.html#Syncfusion_XForms_ComboBox_SuggestionMode_StartsWith)
+- [`StartsWithCaseSensitive`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionMode.html#Syncfusion_XForms_ComboBox_SuggestionMode_StartsWithCaseSensitive)
+- [`Contains`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionMode.html#Syncfusion_XForms_ComboBox_SuggestionMode_Contains)
+- [`ContainsWithCaseSensitive`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionMode.html#Syncfusion_XForms_ComboBox_SuggestionMode_ContainsWithCaseSensitive)
+- [`Equals`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionMode.html#Syncfusion_XForms_ComboBox_SuggestionMode_Equals)
+- [`EqualsWithCaseSensitive`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionMode.html#Syncfusion_XForms_ComboBox_SuggestionMode_EqualsWithCaseSensitive)
+- [`EndsWith`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionMode.html#Syncfusion_XForms_ComboBox_SuggestionMode_EndsWith)
+- [`EndsWithCaseSensitive`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionMode.html#Syncfusion_XForms_ComboBox_SuggestionMode_EndsWithCaseSensitive)
+- [`Custom`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionMode.html#Syncfusion_XForms_ComboBox_SuggestionMode_Custom)
+### Filtering Words that Start with Input Text
+
+Displays all matches that start with the typed characters in the control. This strategy is case-insensitive.
{% tabs %}
@@ -373,7 +386,7 @@ Content = layout;
#### Filtering words that equals input text - case sensitive
-Displays all the words that completely match with the typed characters in control. This strategy is case sensitive.
+Displays all matches that start with the typed characters in control. This strategy is case-sensitive.
{% tabs %}
@@ -564,10 +577,9 @@ Content = layout;

+### Filtering Words that Contain Input Text
-#### Filtering words that end with input text - case sensitive
-
-Displays all the matches that ends with the typed characters in control. This strategy is case sensitive.
+Displays all matches that contain the typed characters in control. This strategy is case-insensitive.
{% tabs %}
@@ -797,4 +809,8 @@ Content = layout;

-N> The deletion of a character is not support in this mode which is a known framework issue.
\ No newline at end of file
+N> The deletion of a character is not support in this mode which is a known framework issue.
+
+ "Ukraine",
+ "United Arab Emirates",
+ "
diff --git a/Xamarin/ComboBox/Customizing-ComboBox.md b/Xamarin/ComboBox/Customizing-ComboBox.md
index e4110b43d..48e514e7e 100644
--- a/Xamarin/ComboBox/Customizing-ComboBox.md
+++ b/Xamarin/ComboBox/Customizing-ComboBox.md
@@ -1,39 +1,37 @@
---
-layout : post
-title: Customizing ComboBox in Xamarin ComboBox control | Syncfusion
-description: Learn here all about Customizing ComboBox support in Syncfusion Xamarin ComboBox (SfComboBox) control and more.
-platform : Xamarin
-control : SfComboBox
-documentation : ug
+layout: post
+title: Customizing ComboBox in Xamarin ComboBox Control | Syncfusion
+description: Learn about customizing the Syncfusion Xamarin ComboBox (SfComboBox) control in detail, including entry and drop-down parts.
+platform: Xamarin
+control: SfComboBox
+documentation: ug
---
# Customizing ComboBox in Xamarin ComboBox (SfComboBox)
-The [Xamarin ComboBox](https://www.syncfusion.com/xamarin-ui-controls/xamarin-combobox) (SfComboBox) control provides user friendly customizing options for both entry part and drop-down part. In this section, customizing the entire ComboBox control is explained.
+The [Xamarin ComboBox](https://www.syncfusion.com/xamarin-ui-controls/xamarin-combobox) (SfComboBox) control provides user-friendly customization options for both the entry and drop-down sections. This section explains how to customize the entire ComboBox control.
-## Customizing the entry
+## Customizing the Entry
-The [`TextColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_TextColor), [`TextSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_TextSize), [`FontAttributes`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_FontAttributes), [`FontFamily`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_FontFamily) and [`BorderColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_BorderColor) properties are used to customize the foreground color, font size, font attribute, font family and border color of the entry part.
+Properties like [`TextColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_TextColor), [`TextSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_TextSize), [`FontAttributes`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_FontAttributes), [`FontFamily`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_FontFamily), and [`BorderColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_BorderColor) allow customization of text color, size, font attributes, family, and border color.
-### Text color
+### Text Color
-The combo box control provides the user to customize the foreground color of the text inside the entry part.
+Customize the text's foreground color inside the entry section.
+### Text Size
-### Text size
+Use the [`TextSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_TextSize) property to set the text size in the entry section.
+### Font Attributes
-The Xamarin ComboBox (SfComboBox) control provides the user to customize the text size of the text inside the entry part using [`TextSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_TextSize) property.
+Adjust font attributes of the entry section text using [`FontAttributes`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_FontAttributes).
-### Font attributes
+### Font Family
-The combo box control provides the user to customize the font attribute of the text inside the entry part using [`FontAttributes`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_FontAttributes) property.
+Set the font family for the entry section text using [`FontFamily`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_FontFamily).
-### Font family
+### Border Color
-The combo box control provides the user to customize the font family of the text inside the entry part using [`FontFamily`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_FontFamily) property.
-
-### Border color
-
-The combo box control provides the user to customize the border color of the entry box using [`BorderColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_BorderColor) property.
+Customize the entry box's border color with the [`BorderColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_BorderColor) property.
{% tabs %}
@@ -71,12 +69,11 @@ this.Content = stackLayout;
{% endtabs %}
-
-
-### Changing delete button color
+
-The [`ClearButtonColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_ClearButtonColor) property is used to modify the delete button color. The following code example shows changing delete button color.
+### Changing Delete Button Color
+Modify the delete button color using the [`ClearButtonColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_ClearButtonColor) property.
{% tabs %}
{% highlight xaml %}
@@ -1058,4 +1055,4 @@ namespace ComboBoxSample
{% endtabs %}
-
\ No newline at end of file
+
diff --git a/Xamarin/ComboBox/DataTemplateSelector.md b/Xamarin/ComboBox/DataTemplateSelector.md
index 6996c0321..0af7be64a 100644
--- a/Xamarin/ComboBox/DataTemplateSelector.md
+++ b/Xamarin/ComboBox/DataTemplateSelector.md
@@ -1,7 +1,7 @@
---
layout: post
-title: DataTemplateSelector in Xamarin ComboBox control | Syncfusion
-description: Learn here all about DataTemplateSelector support in Syncfusion Xamarin ComboBox (SfComboBox) control and more.
+title: DataTemplateSelector in Xamarin ComboBox Control | Syncfusion
+description: Learn about the DataTemplateSelector support in the Syncfusion Xamarin ComboBox (SfComboBox) control and more.
platform: Xamarin
control: SfComboBox
documentation: ug
@@ -9,7 +9,7 @@ documentation: ug
# DataTemplateSelector in Xamarin ComboBox (SfComboBox)
-[`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) supports DataTemplateSelector, which is used to choose a DataTemplate based on data object.
+The [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) supports a DataTemplateSelector, allowing you to select a DataTemplate based on a data object.
{% tabs %}
@@ -102,7 +102,7 @@ documentation: ug
## Create and Initialize Business Models
-Define a simple model class MobileDetail with fields IsAvailableInStock, Mobile and populate mobile detail in ViewModel.
+Define a simple model class `MobileDetail` with fields `IsAvailableInStock`, `Mobile`, and populate mobile details in the ViewModel.
{% tabs %}
@@ -142,7 +142,7 @@ Define a simple model class MobileDetail with fields IsAvailableInStock, Mobile
## OnSelectTemplate
-The OnSelectTemplate is an overridden method to return a particular DataTemplate. The following code sample demonstrates how to use the OnSelectTemplate method.
+The `OnSelectTemplate` method is overridden to return a particular DataTemplate. The following sample demonstrates how to use the `OnSelectTemplate` method.
{% tabs %}
@@ -168,12 +168,11 @@ The OnSelectTemplate is an overridden method to return a particular DataTemplate
{% endtabs %}
-The following screenshot illustrates the output of above code.
+The following screenshot illustrates the output of the above code.
-
+
-
-We have attached sample for reference. You can download the sample from the following link.
+For reference, a sample is available at the following link.
Sample Link: [SfComboBox_DataTemplateSelector](https://github.com/SyncfusionExamples/datatemplate-selector-sfcombobox)
diff --git a/Xamarin/ComboBox/Dealing-with-Suggestion-Box.md b/Xamarin/ComboBox/Dealing-with-Suggestion-Box.md
index 1aae9f0ec..4eb325cfd 100644
--- a/Xamarin/ComboBox/Dealing-with-Suggestion-Box.md
+++ b/Xamarin/ComboBox/Dealing-with-Suggestion-Box.md
@@ -1,27 +1,24 @@
---
layout: post
-title: Dealing with Suggestion Box in Xamarin ComboBox control | Syncfusion
-description: Learn here all about Dealing with Suggestion Box support in Syncfusion Xamarin ComboBox (SfComboBox) control and more.
-platform: xamarin
+title: Dealing with Suggestion Box in Xamarin ComboBox Control | Syncfusion
+description: Learn about managing the Suggestion Box in the Syncfusion Xamarin ComboBox (SfComboBox) control.
+platform: Xamarin
control: SfComboBox
documentation: ug
---
# Dealing with Suggestion Box in Xamarin ComboBox (SfComboBox)
-Suggestion box is a drop-down list box, which displays the filtered suggestions inside a popup. This section explains the properties that deals with the drop-down list in [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) control.
+The suggestion box is a drop-down list that displays filtered suggestions in a popup. This section discusses the properties associated with the drop-down list in the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html).
-## Suggestion box placement mode
+## Suggestion Box Placement Mode
-The drop-down that shows the filtered items will be placed automatically based on the available space and can also be customized using the [`SuggestionBoxPlacement`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SuggestionBoxPlacement) property.
+The drop-down showing filtered items is automatically placed based on available space and can be customized using the [`SuggestionBoxPlacement`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SuggestionBoxPlacement) property.
-[`Top`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionBoxPlacement.html#Syncfusion_XForms_ComboBox_SuggestionBoxPlacement_Top) - Drop-down will be placed above the text box.
-
-[`Bottom`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionBoxPlacement.html#Syncfusion_XForms_ComboBox_SuggestionBoxPlacement_Bottom) - Drop-down will be placed below the text box.
-
-[`Auto`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionBoxPlacement.html#Syncfusion_XForms_ComboBox_SuggestionBoxPlacement_Auto) - Drop-down will be placed based on the available space either top or bottom of the text box.
-
-[`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionBoxPlacement.html#Syncfusion_XForms_ComboBox_SuggestionBoxPlacement_None) - Drop-down will not be shown with the filtered items.
+- [`Top`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionBoxPlacement.html#Syncfusion_XForms_ComboBox_SuggestionBoxPlacement_Top): Drop-down appears above the text box.
+- [`Bottom`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionBoxPlacement.html#Syncfusion_XForms_ComboBox_SuggestionBoxPlacement_Bottom): Drop-down appears below the text box.
+- [`Auto`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionBoxPlacement.html#Syncfusion_XForms_ComboBox_SuggestionBoxPlacement_Auto): Drop-down is placed depending on available space either above or below the text box.
+- [`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SuggestionBoxPlacement.html#Syncfusion_XForms_ComboBox_SuggestionBoxPlacement_None): Drop-down with filtered items will not be shown.
{% tabs %}
@@ -794,3 +791,4 @@ namespace SfComboBox_Sample

N> Retrieve the filter suggestion items sample is available in this [link](https://github.com/SyncfusionExamples/xamarin-forms-sfcombobox).
+
diff --git a/Xamarin/ComboBox/Diacritic-Sensitivity.md b/Xamarin/ComboBox/Diacritic-Sensitivity.md
index 47b97ed4f..4fcb3980d 100644
--- a/Xamarin/ComboBox/Diacritic-Sensitivity.md
+++ b/Xamarin/ComboBox/Diacritic-Sensitivity.md
@@ -1,16 +1,16 @@
---
layout: post
-title: Diacritic Sensitivity in Xamarin ComboBox control | Syncfusion
-description: Learn here all about Diacritic Sensitivity support in Syncfusion Xamarin ComboBox (SfComboBox) control and more.
-platform: xamarin
+title: Diacritic Sensitivity in Xamarin ComboBox Control | Syncfusion
+description: Learn about Diacritic Sensitivity support in the Syncfusion Xamarin ComboBox (SfComboBox) control and more.
+platform: Xamarin
control: SfComboBox
documentation: ug
---
# Diacritic Sensitivity in Xamarin ComboBox (SfComboBox)
-The control does not stick with one type of keyboard, so you can populate items from a language with letters containing diacritics, and search for them with English characters from an en-US keyboard. Users can enable or disable the diacritic sensitivity with the [`IgnoreDiacritic`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_IgnoreDiacritic) property. In the below code example we have illustrate how to enables the diacritic sensitivity so that items in the suggestion list get populated by entering any diacritic character of that alphabet.
+The `SfComboBox` control allows for flexibility with various keyboard types, enabling users to populate items with letters containing diacritics and search using English characters from an en-US keyboard. Users can toggle diacritic sensitivity using the [`IgnoreDiacritic`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_IgnoreDiacritic) property. The following example illustrates enabling diacritic sensitivity so that items in the suggestion list can be populated by entering any diacritic character of that alphabet.
-N> Diacritic Sensitivity support has enhanced only on iOS and Android platform.
+> **Note:** Diacritic Sensitivity support is enhanced only on iOS and Android platforms.
{% tabs %}
diff --git a/Xamarin/ComboBox/Editable-Modes.md b/Xamarin/ComboBox/Editable-Modes.md
index 80bdb908a..a74b34866 100644
--- a/Xamarin/ComboBox/Editable-Modes.md
+++ b/Xamarin/ComboBox/Editable-Modes.md
@@ -1,21 +1,21 @@
---
-layout : post
-title: Editable Modes in Xamarin ComboBox control | Syncfusion
-description: Learn here all about Editable Modes support in Syncfusion Xamarin ComboBox (SfComboBox) control and more.
-platform : Xamarin
-control : SfComboBox
-documentation : ug
+layout: post
+title: Editable Modes in Xamarin ComboBox Control | Syncfusion
+description: Learn about Editable Modes support in the Syncfusion Xamarin ComboBox (SfComboBox) control and more.
+platform: Xamarin
+control: SfComboBox
+documentation: ug
---
# Editable Modes in Xamarin ComboBox (SfComboBox)
-The combo box control supports both editable and non-editable text box to choose selected items in given data source. Users can select one item from the suggestion list.
+The ComboBox control provides both editable and non-editable options to select items from a given data source. Users can choose a single item from the suggestion list.
-[`IsEditableMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_IsEditableMode) property is used to enable the user input in [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) control. The default value is false.
+The [`IsEditableMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_IsEditableMode) property is used to enable user input in the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) control, with the default value set to `false`.
-## Editable combo box
+## Editable ComboBox
-In editable mode, the combo box allows users to edit in the text box that shows the suggestions in drop-down list based on the input.
+In editable mode, the ComboBox allows users to type in the text box, which then displays suggestions in the drop-down list based on their input.
{% tabs %}
diff --git a/Xamarin/ComboBox/Events.md b/Xamarin/ComboBox/Events.md
index a4172fd10..546f479ac 100644
--- a/Xamarin/ComboBox/Events.md
+++ b/Xamarin/ComboBox/Events.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Events in Syncfusion SfComboBox control in Xamarin.Forms
-description: This section describes how to use different types of events and interactvity in SfComboBox control (Xamarin.Forms)
+title: Events in Syncfusion SfComboBox Control in Xamarin.Forms
+description: This section describes how to use different types of events and interactivity in the SfComboBox control (Xamarin.Forms)
platform: Xamarin
control: SfComboBox
documentation: ug
@@ -11,9 +11,9 @@ documentation: ug
## ValueChanged Event
-You can perform operation, while changing the value of [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) Text using the [`ValueChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_ValueChanged) event. [`ValueChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_ValueChanged) event returns the changed value in SfComboBox.
+You can perform operations while changing the text value of the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) using the [`ValueChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_ValueChanged) event. This event returns the changed value in the SfComboBox.
-The ValueChanged event returns the following argument.
+The `ValueChanged` event provides the following argument:
@@ -22,13 +22,15 @@ The ValueChanged event returns the following argument.
Value
-
Displays changed value in SfComboBox
+
Displays the changed value in the SfComboBox
## SelectionChanged Event
-The [`SelectionChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectionChanged) event is used to notify when an item is selected from the suggestion list or when dynamically setting the [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectedIndex) property of SfComboBox, the event is triggered. For more information, refer to [`this`](https://help.syncfusion.com/xamarin/combobox/retrieving-selected-values) link. The [`SelectionChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectionChanged) event returns the following argument.
+The [`SelectionChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectionChanged) event is triggered when an item is selected from the suggestion list or when the [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectedIndex) property of the SfComboBox is set dynamically.
+
+For more information, refer to [this link](https://help.syncfusion.com/xamarin/combobox/retrieving-selected-values). The `SelectionChanged` event returns the following argument:
@@ -37,13 +39,13 @@ The [`SelectionChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForm
Value
-
Holds the selected items in SfComboBox
+
Holds the selected items in the SfComboBox
## SelectionChanging Event
-The [`SelectionChanging`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectionChanging) event is used to notify, before the selection is going to changed by tapping the suggestion box or dynamically setting the SelectedIndex property of [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html).The [`SelectionChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectionChanged) event returns the following argument.
+The [`SelectionChanging`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectionChanging) event notifies you before the selection changes, either by tapping the suggestion box or dynamically setting the SelectedIndex property of the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html).
@@ -52,17 +54,17 @@ The [`SelectionChanging`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XFor
Value
-
Holds the selecting items in SfComboBox.
+
Holds the items being selected in the SfComboBox.
Cancel
-
Restricts the item to be selected.
+
Prevents the item from being selected.
## FocusChanged Event
-The [`FocusChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_FocusChanged) event occurs when the control gets the focus and loses the focus. The argument contains the following information.
+The [`FocusChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_FocusChanged) event occurs when the control gains or loses focus. The argument contains the following information.
@@ -77,10 +79,9 @@ The [`FocusChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.Co
## FilterCollectionChanged Event
-The [`FilterCollectionChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_FilterCollectionChanged) event is triggered whenever the items gets filtered in the suggestion.
-
-For more information regarding this refer to [`this`](https://help.syncfusion.com/xamarin/combobox/dealing-with-suggestion-box) link. The [`FilterCollectionChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_FilterCollectionChanged) event returns the following argument.
+The [`FilterCollectionChanged`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_FilterCollectionChanged) event is triggered when items are filtered in the suggestion list.
+For more information, refer to [this link](https://help.syncfusion.com/xamarin/combobox/dealing-with-suggestion-box). The `FilterCollectionChanged` event returns the following argument.
Members
@@ -98,13 +99,13 @@ The [`DropDownOpen`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.Co
## DropDownClosing Event
-The [`DropDownClosing`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_DropDownClosing) event occurs when the drop-down closes.
+The [`DropDownClosing`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_DropDownClosing) event occurs when the drop-down is about to close.
### DropDownClosing event args
-[`IsItemSelected`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.DropDownCancelEventArgs.html#Syncfusion_XForms_ComboBox_DropDownCancelEventArgs_IsItemSelected) - It returns the value indicating whether the item is selected or not when the dropdown window closes.
+[`IsItemSelected`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.DropDownCancelEventArgs.html#Syncfusion_XForms_ComboBox_DropDownCancelEventArgs_IsItemSelected) returns a value indicating whether an item is selected when the dropdown closes.
- [`Cancel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.Core.CancelEventArgs.html#Syncfusion_XForms_Core_CancelEventArgs_Cancel) - Closing of the dropdown can be handled by setting the e.Cancel.
+[`Cancel`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.Core.CancelEventArgs.html#Syncfusion_XForms_Core_CancelEventArgs_Cancel) allows handling the closure of the dropdown by setting `e.Cancel`.
{% tabs %}
@@ -151,12 +152,12 @@ The [`DropDownClosed`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.
## Completed Event
-The [`Completed`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_Completed) event is raised when the user finalizes the text in the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) editable mode by pressing return key on the keyboard.
+The [`Completed`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_Completed) event is raised when the user finalizes the text in the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) editable mode by pressing the return key on the keyboard.
## Tapped Event
-The [`Tapped`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_Tapped) event occurs when the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) is tapped in Non-editable mode.
+The [`Tapped`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_Tapped) event occurs when the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) is tapped in non-editable mode.
## LoadMoreButtonTapped Event
-The [`LoadMoreButtonTapped`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_LoadMoreButtonTapped) can be triggered only when you tap on the load more button. For more information, refer to [`this`](https://help.syncfusion.com/xamarin/combobox/maximum-display-item-with-expander#load-more-button-tapped-event) link.
\ No newline at end of file
+The [`LoadMoreButtonTapped`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_LoadMoreButtonTapped) event is triggered only when the load more button is tapped. For more information, refer to [this link](https://help.syncfusion.com/xamarin/combobox/maximum-display-item-with-expander#load-more-button-tapped-event).
diff --git a/Xamarin/ComboBox/Getting-Started.md b/Xamarin/ComboBox/Getting-Started.md
index a5828f8c5..b781ea93e 100644
--- a/Xamarin/ComboBox/Getting-Started.md
+++ b/Xamarin/ComboBox/Getting-Started.md
@@ -1,43 +1,43 @@
---
layout: post
-title: Getting Started with Xamarin ComboBox control | Syncfusion
-description: Learn here about getting started with Syncfusion Xamarin ComboBox (SfComboBox) control, its elements and more.
-platform: xamarin
+title: Getting Started with Xamarin ComboBox Control | Syncfusion
+description: Learn about getting started with Syncfusion Xamarin ComboBox (SfComboBox) control, its elements, and more.
+platform: Xamarin
control: SfComboBox
documentation: ug
---
# Getting Started with Xamarin ComboBox (SfComboBox)
-This section explains the steps required to create the [Xamarin ComboBox](https://www.syncfusion.com/xamarin-ui-controls/xamarin-combobox) control, populate it with data and filter the suggestions. This section covers only the minimal features that are needed to get started with the control.
+This section explains the steps necessary to create the [Xamarin ComboBox](https://www.syncfusion.com/xamarin-ui-controls/xamarin-combobox) control, populate it with data, and filter suggestions. It covers only the essential features needed to get started with the control.
-## Assembly deployment
+## Assembly Deployment
-After installing [Essential Studio® for Xamarin](https://www.syncfusion.com/downloads/xamarin), you can find all the required assemblies in the installation folders, {Syncfusion Essential Studio Installed location} \Essential Studio\\{Version #}\Xamarin\lib.
+After installing [Essential Studio® for Xamarin](https://www.syncfusion.com/downloads/xamarin), you can find the required assemblies in the installation folders at `{Syncfusion Essential Studio Installed location}\Essential Studio\{Version #}\Xamarin\lib`.
E.g.: C:\Program Files (x86) \Syncfusion\Essential Studio\19.1.0.54\Xamarin\lib
-N> Assemblies can be found in unzipped package location(Documents/Syncfusion/{Version #}/Xamarin/lib) in Mac.
+> **Note:** Assemblies can also be found in the unzipped package location (Documents/Syncfusion/{Version #}/Xamarin/lib) on Mac.
-## Adding SfComboBox reference
+## Adding SfComboBox Reference
-You can add [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) reference using one of the following methods:
+You can add the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) reference using one of the following methods:
-**Method 1: Adding SfComboBox reference from nuget.org**
+**Method 1: Adding SfComboBox Reference from NuGet.org**
-Syncfusion Xamarin components are available in [nuget.org](https://www.nuget.org/). To add [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) to your project, open the NuGet package manager in Visual Studio, search for [Syncfusion.Xamarin.SfComboBox](https://www.nuget.org/packages/Syncfusion.Xamarin.SfComboBox), and then install it.
+Syncfusion Xamarin components are available on [nuget.org](https://www.nuget.org/). To add [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) to your project, open the NuGet package manager in Visual Studio, search for [Syncfusion.Xamarin.SfComboBox](https://www.nuget.org/packages/Syncfusion.Xamarin.SfComboBox), and install it.
-
+
-N> Install the same version of [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) NuGet in all the projects.
+> **Note:** Install the same version of [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) NuGet in all projects.
-**Method 2: Adding SfComboBox reference from toolbox**
+**Method 2: Adding SfComboBox Reference from Toolbox**
-Syncfusion also provides Xamarin Toolbox. Using this toolbox, you can drag the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) control to the XAML page. It will automatically install the required NuGet packages and add the namespace to the page. To install Syncfusion Xamarin Toolbox, refer to [Toolbox](https://help.syncfusion.com/xamarin/utility#toolbox).
+Syncfusion provides a Xamarin Toolbox, allowing you to drag the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) control onto the XAML page. This automatically installs the required NuGet packages and adds the namespace to the page. For more information, refer to the [Toolbox](https://help.syncfusion.com/xamarin/utility#toolbox) documentation.
-**Method 3: Adding SfComboBox assemblies manually from the installed location**
+**Method 3: Adding SfComboBox Assemblies Manually**
-If you prefer to manually reference the assemblies instead referencing from NuGet, add the following assemblies in respective projects.
+If you prefer to manually reference the assemblies instead of using NuGet, add the following assemblies to the respective projects:
Location: {Installed location}/{version}/Xamarin/lib
@@ -68,7 +68,7 @@ N> If you are adding the references from toolbox, this step is not needed.
### Additional Step for iOS
-To launch the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) in iOS, call the `SfComboBoxRenderer.Init()` in the `FinishedLaunching` overridden method of the AppDelegate class after the Xamarin.Forms Framework has been initialized and before the LoadApplication is called, as demonstrated in the following code example.
+To launch the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) on iOS, call the `SfComboBoxRenderer.Init()` method in the `FinishedLaunching` override in the AppDelegate class after the Xamarin.Forms Framework has been initialized and before `LoadApplication` is called, as shown below:
{% highlight c# %}
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
diff --git a/Xamarin/ComboBox/Header-and-Footer.md b/Xamarin/ComboBox/Header-and-Footer.md
index a983f9841..df62d0794 100644
--- a/Xamarin/ComboBox/Header-and-Footer.md
+++ b/Xamarin/ComboBox/Header-and-Footer.md
@@ -1,18 +1,18 @@
---
layout: post
-title: Header and Footer in Xamarin ComboBox control | Syncfusion
-description: Learn here all about Header and Footer support in Syncfusion Xamarin ComboBox (SfComboBox) control and more.
-platform: xamarin
+title: Header and Footer in Xamarin ComboBox Control | Syncfusion
+description: Learn about Header and Footer support in the Syncfusion Xamarin ComboBox (SfComboBox) control and more.
+platform: Xamarin
control: SfComboBox
documentation: ug
---
# Header and Footer in Xamarin ComboBox (SfComboBox)
-You can provide header and footer views in the suggestion list in [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) by enabling the [`ShowDropDownHeaderView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_ShowDropDownHeaderView) and the [`ShowDropDownFooterView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_ShowDropDownFooterView) properties.
+You can provide header and footer views in the suggestion list of [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) by enabling the [`ShowDropDownHeaderView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_ShowDropDownHeaderView) and [`ShowDropDownFooterView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_ShowDropDownFooterView) properties.
-## Header content
+## Header Content
-You can provide content for header at the top of the ComboBox's Suggestion box. The [`DropDownHeaderView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_DropDownHeaderView) property is used to set the content of the header. The height of the header in the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) can be adjusted using the [`DropDownHeaderViewHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_DropDownHeaderViewHeight) property.
+You can provide content for the header at the top of the ComboBox's suggestion box. The [`DropDownHeaderView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_DropDownHeaderView) property is used to set the header's content. The header's height can be adjusted using the [`DropDownHeaderViewHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_DropDownHeaderViewHeight) property.
{% tabs %}
@@ -164,3 +164,4 @@ Content = layout;

+
diff --git a/Xamarin/ComboBox/Highlighting-matched-text.md b/Xamarin/ComboBox/Highlighting-matched-text.md
index 46374f54b..03c282147 100644
--- a/Xamarin/ComboBox/Highlighting-matched-text.md
+++ b/Xamarin/ComboBox/Highlighting-matched-text.md
@@ -1,26 +1,24 @@
---
layout: post
-title: Highlighting matched text in Xamarin ComboBox control | Syncfusion
-description: Learn here all about Highlighting matched text support in Syncfusion Xamarin ComboBox (SfComboBox) control and more.
-platform: xamarin
+title: Highlighting Matched Text in Xamarin ComboBox Control | Syncfusion
+description: Learn about highlighting matched text support in the Syncfusion Xamarin ComboBox (SfComboBox) control and more.
+platform: Xamarin
control: SfComboBox
documentation: ug
---
-# Highlighting matched text in Xamarin ComboBox (SfComboBox)
+# Highlighting Matched Text in Xamarin ComboBox (SfComboBox)
-You can highlight matching characters in a suggestion list to pick an item with more clarity by following two ways:
+You can highlight matching characters in a suggestion list for better clarity, using two modes:
-* [`First Occurrence`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.OccurrenceMode.html#Syncfusion_XForms_ComboBox_OccurrenceMode_FirstOccurrence)
+- [`First Occurrence`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.OccurrenceMode.html#Syncfusion_XForms_ComboBox_OccurrenceMode_FirstOccurrence)
+- [`Multiple Occurrence`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.OccurrenceMode.html#Syncfusion_XForms_ComboBox_OccurrenceMode_MultipleOccurrence)
-* [`Multiple Occurrence`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.OccurrenceMode.html#Syncfusion_XForms_ComboBox_OccurrenceMode_MultipleOccurrence)
+Highlighting can be customized using the following properties:
-Highlighting can be indicated with various customizing styles by enabling the following properties.
+- [`HighlightedTextColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_HighlightedTextColor): Sets the color of the highlighted text.
+- [`HighlightTextFontAttributes`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_HighlightedTextFontAttributes): Sets the font attributes of the highlighted text.
-* [`HighlightedTextColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_HighlightedTextColor) - Sets the color of the highlighted text for differentiating the highlighted characters.
-
-* [`HighlightTextFontAttributes`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_HighlightedTextFontAttributes) - Sets the FontAttributes of the highlighted text.
-
-## First occurrence
+## First Occurrence
Highlights the first position of the matching characters in the suggestion list.
diff --git a/Xamarin/ComboBox/Maximum-display-item-with-Expander.md b/Xamarin/ComboBox/Maximum-display-item-with-Expander.md
index e4fe529fa..51e3722fa 100644
--- a/Xamarin/ComboBox/Maximum-display-item-with-Expander.md
+++ b/Xamarin/ComboBox/Maximum-display-item-with-Expander.md
@@ -1,16 +1,16 @@
---
layout: post
-title: Maximum display item with Expander in Xamarin ComboBox | Syncfusion
-description: Learn here all about Maximum display item with Expander support in Syncfusion Xamarin ComboBox (SfComboBox) control and more.
-platform: xamarin
+title: Maximum Display Item with Expander in Xamarin ComboBox | Syncfusion
+description: Learn about Maximum Display Item with Expander support in the Syncfusion Xamarin ComboBox (SfComboBox) control and more.
+platform: Xamarin
control: SfComboBox
documentation: ug
---
-# Maximum display item with Expander in Xamarin ComboBox (SfComboBox)
+# Maximum Display Item with Expander in Xamarin ComboBox (SfComboBox)
-## Maximum display item with expander in Xamarin SfComboBox
+## Maximum Display Item with Expander in Xamarin SfComboBox
-Restrict the number of suggestions displayed and have the remaining items loaded by selecting the LoadMore. you can restrict the maximum suggestion to be displayed with the [`MaximumSuggestion`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_MaximumSuggestion) property and also you can set the desire text for displaying the LoadMore text with the [`LoadMoreText`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_LoadMoreText) property.
+Restrict the number of suggestions displayed, and load remaining items by selecting "Load More." You can control the maximum suggestions displayed using the [`MaximumSuggestion`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_MaximumSuggestion) property, and set custom text for loading more items using the [`LoadMoreText`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_LoadMoreText) property.
{% tabs %}
@@ -101,14 +101,13 @@ namespace ComboBoxSample
{% endtabs %}
+
-
+## Restricting the Maximum Display of Items Dynamically
-## Restricting the maximum display of items dynamically
+You can restrict the maximum display of items dynamically by calling the `LoadMore` method. The user can dynamically change the maximum suggestion count by calling the `LoadMore` method with the desired maximum suggestion count as the argument.
-You can restrict the maximum display of items dynamically by calling the `LoadMore` method. The user can dynamically change the maximum suggestion count by calling the LoadMore method by giving the maximum suggestion as the argument inside.
-
-N> LoadMore method has enhanced only on iOS and Android platform.
+> **Note:** The `LoadMore` method is enhanced only on iOS and Android platforms.
{% tabs %}
{% highlight c# %}
@@ -122,11 +121,9 @@ comboBox.LoadMore(5);
{% endhighlight %}
{% endtabs %}
-## Load more view customization
-
-[`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) allows customizing User Interface(UI) of Load More view.
-To customize the load more text, add the custom UI in the [`LoadMoreTemplate`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_LoadMoreTemplate) API in [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html), as shown in the following code snippet.
+## Load More View Customization
+[`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) allows customization of the User Interface (UI) for the Load More view. Customize the load more text by adding a custom UI using the [`LoadMoreTemplate`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_LoadMoreTemplate) API in `SfComboBox`, as shown in the following example:
{% tabs %}
{% highlight xaml %}
diff --git a/Xamarin/ComboBox/Multiple-selection.md b/Xamarin/ComboBox/Multiple-selection.md
index 60a803d35..f4fee3601 100644
--- a/Xamarin/ComboBox/Multiple-selection.md
+++ b/Xamarin/ComboBox/Multiple-selection.md
@@ -1,22 +1,20 @@
---
layout: post
-title: Multiple selection in Xamarin ComboBox control | Syncfusion
-description: Learn here all about Multiple selection support in Syncfusion Xamarin ComboBox (SfComboBox) control and more.
-platform: xamarin
+title: Multiple Selection in Xamarin ComboBox Control | Syncfusion
+description: Learn about multiple selection support in the Syncfusion Xamarin ComboBox (SfComboBox) control and more.
+platform: Xamarin
control: SfComboBox
documentation: ug
---
-# Multiple selection in Xamarin ComboBox (SfComboBox)
+# Multiple Selection in Xamarin ComboBox (SfComboBox)
-Select multiple items from a suggestion list. There are two ways to perform multi selection in the combo box control.
+Select multiple items from a suggestion list using one of two methods:
+- Token Representation
+- Delimiter
-* Token Representation
+## Token Representation
-* Delimiter
-
-## Token representation
-
-Selected items will be displayed with a customizable token representation. Users can remove each tokenized item with the close button. And [`IsSelectedItemsVisibleInDropDown`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_IsSelectedItemsVisibleInDropDown) property is used to restrict the selected items as visible or not in dropDown.
+Selected items will be displayed with a customizable token representation. Users can remove each tokenized item using the close button. The [`IsSelectedItemsVisibleInDropDown`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_IsSelectedItemsVisibleInDropDown) property determines whether selected items are visible in the drop-down.
{% tabs %}
diff --git a/Xamarin/ComboBox/No-Result-Found.md b/Xamarin/ComboBox/No-Result-Found.md
index f0e39d3af..c42e89638 100644
--- a/Xamarin/ComboBox/No-Result-Found.md
+++ b/Xamarin/ComboBox/No-Result-Found.md
@@ -1,14 +1,14 @@
---
layout: post
-title: No Results Found in Xamarin ComboBox control | Syncfusion
-description: Learn here all about No Results Found support in Syncfusion Xamarin ComboBox (SfComboBox) control and more.
-platform: xamarin
+title: No Results Found in Xamarin ComboBox Control | Syncfusion
+description: Learn about "No Results Found" support in the Syncfusion Xamarin ComboBox (SfComboBox) control and more.
+platform: Xamarin
control: SfComboBox
documentation: ug
---
# No Results Found in Xamarin ComboBox (SfComboBox)
-When the entered item is not in the suggestion list, [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) displays a text that indicates no search results found. You can set the desire text to be displayed for indicating no results found using the [`NoResultsFoundText`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_NoResultsFoundText) property.
+When the entered item is not in the suggestion list, the [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) displays a text indicating that no search results were found. You can set the desired text using the [`NoResultsFoundText`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_NoResultsFoundText) property.
{% tabs %}
@@ -77,11 +77,12 @@ namespace ComboBox_Sample
{% endtabs %}
-
+
## Customizing NoResultsFoundText
-The [`NoResultsFoundTextColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_NoResultsFoundTextColor), [`NoResultsFoundFontSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_NoResultsFoundFontSize), [`NoResultsFoundFontAttributes`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_NoResultsFoundFontAttributes), and [`NoResultsFoundFontFamily`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_NoResultsFoundFontFamily) properties are used to customize the foreground color, font size, font attribute, and font family of NoResultsFoundText.
+The [`NoResultsFoundTextColor`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_NoResultsFoundTextColor), [`NoResultsFoundFontSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_NoResultsFoundFontSize), [`NoResultsFoundFontAttributes`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_NoResultsFoundFontAttributes), and [`NoResultsFoundFontFamily`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_NoResultsFoundFontFamily) properties are used to customize the color, font size, font attributes, and font family of the NoResultsFoundText.
+
{% tabs %}
{% highlight xaml %}
@@ -105,4 +106,4 @@ comboBox.ComboBoxSource = new List() { "Uganda", "Great Britain", "Ukrai
{% endtabs %}
-
+
diff --git a/Xamarin/ComboBox/Overview.md b/Xamarin/ComboBox/Overview.md
index 512a7a223..9b6a77f1c 100644
--- a/Xamarin/ComboBox/Overview.md
+++ b/Xamarin/ComboBox/Overview.md
@@ -1,32 +1,32 @@
---
-layout : post
-title: About Xamarin ComboBox control | Syncfusion
-description: Learn here all about introduction of Syncfusion Xamarin ComboBox (SfComboBox) control, its elements and more.
-platform : xamarin
-control : SfComboBox
-documentation : ug
+layout: post
+title: About Xamarin ComboBox Control | Syncfusion
+description: Learn about the Syncfusion Xamarin ComboBox (SfComboBox) control, its elements, and more.
+platform: Xamarin
+control: SfComboBox
+documentation: ug
---
# Xamarin ComboBox (SfComboBox) Overview
-The combo box is a textbox component that allows users to type a value or choose an option from the list of predefined options. This control has several out of box features such as data binding, filtering, UI customization, and more.
+The ComboBox is a textbox component that allows users to enter a value or select an option from a list of predefined options. This control comes with built-in features such as data binding, filtering, UI customization, and more.

-## Key features
+## Key Features
-* Editable mode – Supports both editable and non-editable text box to choose selected item from given data source.
+- **Editable Mode**: Supports both editable and non-editable text boxes for selecting an item from a given data source.
-* Filtering mode – Provides options to support both filtering and non-filtering suggestion lists. Provides three ways to display filtered suggestions. These include displaying suggestions using the drop-down list, which appends the first suggestion to text, and a combination of both.
+- **Filtering Mode**: Offers options to support filtering and non-filtering suggestion lists, and provides three ways to display filtered suggestions, including using a drop-down list, appending the first suggestion to text, or a combination of both.
-* Suggestion modes – Suggestions can be filtered in different modes, such us StartsWith, EndWith, Contains, Equals, Custom and more. ComboBox provides both case-sensitive and case-insensitive modes. The items only filter the Allow Filtering property has enabled.
+- **Suggestion Modes**: Filter suggestions using various modes such as StartsWith, EndsWith, Contains, Equals, Custom, and more. ComboBox supports both case-sensitive and case-insensitive modes. Items filter only when the Allow Filtering property is enabled.
-* MultiSelection – Provides two different ways to select multiple items from the suggestion list. They are using Token representation and Delimiter. In Token mode, the text can be wrapped in two ways. They are Wrap and None. In Wrap mode text will be wrapped to next line. When using None, the text will be wrapped horizontally.
+- **Multi-Selection**: Offers two different methods for selecting multiple items from the suggestion list: using Token representation and Delimiter. In Token mode, text can wrap in two ways: Wrap, which wraps text to the next line, and None, which wraps text horizontally.
-* Customization Support – Provide options to customize both the Entry and Suggestion drop down.
+- **Customization Support**: Provides options to customize both the Entry and the Suggestion drop-down.
-* Header and Footer – Header and Footer content can be given in the top and bottom of the Suggestion list in SfComboBox
+- **Header and Footer**: Add header and footer content to the top and bottom of the suggestion list in SfComboBox.
-* Highlighting Text – Highlights the matching text in the suggestion list based on the input given in it.
+- **Highlighting Text**: Highlights matching text in the suggestion list based on user input.
-* Watermark – Supports explanatory text inside the combo box control until the user inputs text. Watermark is restored again if user clears the text in control.
+- **Watermark**: Displays explanatory text inside the ComboBox control until the user inputs text. It is restored if the user clears the text in the control.
diff --git a/Xamarin/ComboBox/Populating-Data.md b/Xamarin/ComboBox/Populating-Data.md
index a011904d3..e64e5b0eb 100644
--- a/Xamarin/ComboBox/Populating-Data.md
+++ b/Xamarin/ComboBox/Populating-Data.md
@@ -1,21 +1,21 @@
---
layout: post
-title: Populating Data in Xamarin ComboBox control | Syncfusion
-description: Learn here all about Populating Data support in Syncfusion Xamarin ComboBox (SfComboBox) control and more.
-platform: xamarin
+title: Populating Data in Xamarin ComboBox Control | Syncfusion
+description: Learn about populating data support in the Syncfusion Xamarin ComboBox (SfComboBox) control and more.
+platform: Xamarin
control: SfComboBox
documentation: ug
---
-# Populating Data in Xamarin ComboBox (SfComboBox)
+# Populating Data in Xamarin ComboBox (SfComboBox)
-[`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) control can be populated with a list of string or business objects, which assists the users when typing. Users can choose one item from the filtered suggestion list.
+The [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) control can be populated with a list of strings or business objects, which assists users during typing. Users can select one item from the filtered suggestion list.
-The [`DataSource`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_DataSource) property is used to populate data in the combo box control. This section explains how to populate the combo box control with list of string and list of employee details separately.
+The [`DataSource`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_DataSource) property is used to populate data in the combo box control. This section explains how to populate the combo box control with a list of strings and a list of employee details separately.
-## Populating string data
+## Populating String Data
-Create an instance of string list and populate items as shown in the following codes.
+Create an instance of a string list and populate items as shown in the following code snippets.
{% tabs %}
diff --git a/Xamarin/ComboBox/Retrieving-Selected-Values.md b/Xamarin/ComboBox/Retrieving-Selected-Values.md
index 6417b3e0b..739c6add9 100644
--- a/Xamarin/ComboBox/Retrieving-Selected-Values.md
+++ b/Xamarin/ComboBox/Retrieving-Selected-Values.md
@@ -1,26 +1,26 @@
---
layout: post
-title: Retrieving Selected Values in Xamarin ComboBox control | Syncfusion
-description: Learn here all about Retrieving Selected Values support in Syncfusion Xamarin ComboBox (SfComboBox) control and more.
-platform: xamarin
+title: Retrieving Selected Values in Xamarin ComboBox Control | Syncfusion
+description: Learn about retrieving selected values support in the Syncfusion Xamarin ComboBox (SfComboBox) control and more.
+platform: Xamarin
control: SfComboBox
documentation: ug
---
# Retrieving Selected Values in Xamarin ComboBox (SfComboBox)
-[`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) provides a way to handle the selected item using the following properties:
-* [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectedIndex)
-* [`SelectedIndices`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectedIndices)
-* [`SelectedItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectedItem)
+The [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) provides a way to handle the selected item using the following properties:
+- [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectedIndex)
+- [`SelectedIndices`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectedIndices)
+- [`SelectedItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectedItem)
## SelectedIndex
-You can get or set the index of the selected item using the [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectedIndex) property. It is applicable only when [`MultiSelectMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_MultiSelectMode) is set to [`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.MultiSelectMode.html#Syncfusion_XForms_ComboBox_MultiSelectMode_None). SelectedIndex will accept integer values.
+You can get or set the index of the selected item using the [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectedIndex) property. It is applicable only when [`MultiSelectMode`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_MultiSelectMode) is set to [`None`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.MultiSelectMode.html#Syncfusion_XForms_ComboBox_MultiSelectMode_None). The `SelectedIndex` accepts integer values.
-### Set the index of item to be selected
+### Set the Index of the Item to be Selected
-The [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectedIndexProperty_) property holds the index of selected item in suggestion list.
+The [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectedIndexProperty_) property holds the index of the selected item in the suggestion list.
{% tabs %}
@@ -107,12 +107,11 @@ namespace ComboBox
{% endtabs %}
-### Retrieve the index of selected item
+### Retrieve the Index of the Selected Item
-When an item is selected from suggestion list, its index can be retrieved using the [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectedIndex) property.
-
-The following code sample demonstrates how to retrieve [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectedIndex) and display it in an alert.
+When an item is selected from the suggestion list, its index can be retrieved using the [`SelectedIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html#Syncfusion_XForms_ComboBox_SfComboBox_SelectedIndex) property.
+The following code sample demonstrates how to retrieve the `SelectedIndex` and display it in an alert.
{% tabs %}
{% highlight xaml %}
diff --git a/Xamarin/ComboBox/Right-to-left.md b/Xamarin/ComboBox/Right-to-left.md
index 9ace3c23c..4b5a2d24d 100644
--- a/Xamarin/ComboBox/Right-to-left.md
+++ b/Xamarin/ComboBox/Right-to-left.md
@@ -1,15 +1,15 @@
---
layout: post
-title: Right to left(RTL) in Xamarin ComboBox control | Syncfusion
-description: Learn here all about Right to left(RTL) support in Syncfusion Xamarin ComboBox (SfComboBox) control and more.
-platform: xamarin
+title: Right-to-Left (RTL) in Xamarin ComboBox Control | Syncfusion
+description: Learn about Right-to-Left (RTL) support in the Syncfusion Xamarin ComboBox (SfComboBox) control and more.
+platform: Xamarin
control: SfComboBox
documentation: UG
---
-# Right to left(RTL) in Xamarin ComboBox (SfComboBox)
+# Right-to-Left (RTL) in Xamarin ComboBox (SfComboBox)
-[`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) supports to change the layout direction of the control in the right-to-left direction by setting the [`FlowDirection`](https://docs.microsoft.com/en-us/dotnet/api/xamarin.forms.visualelement.flowdirection?view=xamarin-forms#Xamarin_Forms_VisualElement_FlowDirection) to [`RightToLeft`](https://devblogs.microsoft.com/xamarin/right-to-left-localization-xamarin-forms) or by changing the device language.
+The [`SfComboBox`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.ComboBox.SfComboBox.html) supports changing the layout direction to right-to-left by setting the [`FlowDirection`](https://docs.microsoft.com/en-us/dotnet/api/xamarin.forms.visualelement.flowdirection?view=xamarin-forms#Xamarin_Forms_VisualElement_FlowDirection) to [`RightToLeft`](https://devblogs.microsoft.com/xamarin/right-to-left-localization-xamarin-forms) or by changing the device language.
{% tabs %}
{% highlight xaml %}
@@ -21,11 +21,10 @@ combobox.FlowDirection = FlowDirection.RightToLeft;
{% endhighlight %}
{% endtabs %}
->**Note**
-For implementing the[`FlowDirection`](https://docs.microsoft.com/en-us/dotnet/api/xamarin.forms.visualelement.flowdirection?view=xamarin-forms#Xamarin_Forms_VisualElement_FlowDirection) in the control, Xamarin.Forms package version must be 3.0 and above. Please refer [`RightToLeft`](https://devblogs.microsoft.com/xamarin/right-to-left-localization-xamarin-forms) to get more details about [`RightToLeft`](https://devblogs.microsoft.com/xamarin/right-to-left-localization-xamarin-forms) flow direction in Xamarin.Forms.
+> **Note:** To implement the [`FlowDirection`](https://docs.microsoft.com/en-us/dotnet/api/xamarin.forms.visualelement.flowdirection?view=xamarin-forms#Xamarin_Forms_VisualElement_FlowDirection) in the control, the Xamarin.Forms package version must be 3.0 or above. Please refer to [RightToLeft](https://devblogs.microsoft.com/xamarin/right-to-left-localization-xamarin-forms) for more details about the right-to-left flow direction in Xamarin.Forms.
### Android
-For Android, add `android:supportsRtl="true"` in your application tag of `AndroidManifest.xml` file, and make sure your `MinSDKVersion` is 17+. By changing the device language / enabling the device's `Force RTL layout` can achieve the [`RightToLeft`](https://devblogs.microsoft.com/xamarin/right-to-left-localization-xamarin-forms) layout direction in Calendar.
+For Android, add `android:supportsRtl="true"` to your application tag in the `AndroidManifest.xml` file, and ensure your `MinSDKVersion` is 17 or higher. Changing the device language/enabling the device's `Force RTL layout` can achieve the [`RightToLeft`](https://devblogs.microsoft.com/xamarin/right-to-left-localization-xamarin-forms) layout direction in Calendar.
{% tabs %}
{% highlight xml %}
@@ -38,7 +37,7 @@ For Android, add `android:supportsRtl="true"` in your application tag of `Androi
{% endtabs %}
### iOS
-For iOS, add the [`RightToLeft`](https://devblogs.microsoft.com/xamarin/right-to-left-localization-xamarin-forms) language in the `CFBundleLocalizations` section of your `Info.plist` file, and make sure you’re targeting iOS 9+.
+For iOS, add the [`RightToLeft`](https://devblogs.microsoft.com/xamarin/right-to-left-localization-xamarin-forms) language to the `CFBundleLocalizations` section of your `Info.plist` file, ensuring you target iOS 9 or higher.
{% tabs %}
{% highlight xml %}
@@ -57,7 +56,7 @@ For iOS, add the [`RightToLeft`](https://devblogs.microsoft.com/xamarin/right-to

### UWP
-For UWP, you need to set [`FlowDirection`](https://docs.microsoft.com/en-us/dotnet/api/xamarin.forms.visualelement.flowdirection?view=xamarin-forms#Xamarin_Forms_VisualElement_FlowDirection) to [`RightToLeft`](https://devblogs.microsoft.com/xamarin/right-to-left-localization-xamarin-forms) in the `MainPage.cs` file of the `UWP` project.
+For UWP, set [`FlowDirection`](https://docs.microsoft.com/en-us/dotnet/api/xamarin.forms.visualelement.flowdirection?view=xamarin-forms#Xamarin_Forms_VisualElement_FlowDirection) to [`RightToLeft`](https://devblogs.microsoft.com/xamarin/right-to-left-localization-xamarin-forms) in the `MainPage.cs` file of the `UWP` project.
{% tabs %}
{% highlight c# %}
diff --git a/Xamarin/Navigation-Drawer/Accessibility.md b/Xamarin/Navigation-Drawer/Accessibility.md
index 26de83129..233b35641 100644
--- a/Xamarin/Navigation-Drawer/Accessibility.md
+++ b/Xamarin/Navigation-Drawer/Accessibility.md
@@ -1,18 +1,18 @@
---
-layout : post
-title: Accessibility in Xamarin Navigation Drawer control | Syncfusion
-description: Learn here all about Accessibility support in Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
-platform : Xamarin.Forms
-control : SfNavigationDrawer
-documentation : ug
+layout: post
+title: Accessibility in Xamarin Navigation Drawer Control | Syncfusion
+description: Discover accessibility support in the Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control.
+platform: Xamarin.Forms
+control: SfNavigationDrawer
+documentation: ug
---
# Accessibility in Xamarin Navigation Drawer (SfNavigationDrawer)
-The [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) control has built-in `AutomationId` for inner elements. The `AutomationId` API allows the automation framework to find and interact with the inner elements of the `NavigationDrawer` control. To keep unique AutomationId, these inner elements' AutomationIds are updated based on the control's `AutomationId`.
+The [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) control includes a built-in `AutomationId` for its inner elements. The `AutomationId` API enables the automation framework to locate and interact with the inner elements of the `NavigationDrawer` control. To ensure unique `AutomationIds`, these identifiers are updated based on the control's `AutomationId`.
-For example, if you set SfNavigationDrawer's `AutomationId` as "DrawerMenu", then the automation framework will interact with the gray area as "DrawerMenu Gray Area".
+For instance, if you assign the `AutomationId` of the SfNavigationDrawer as "DrawerMenu," the automation framework will identify the grey area as "DrawerMenu Gray Area."
-The following screenshot illustrates the AutomationIds of inner elements. You can also interact with the elements inside the ContentView with the element's AutomationId.
+Below is a screenshot illustrating the `AutomationIds` of the inner elements. Interaction with the elements inside the ContentView can be performed using the element's `AutomationId`.

diff --git a/Xamarin/Navigation-Drawer/Duration.md b/Xamarin/Navigation-Drawer/Duration.md
index c8d1ed066..757da57ad 100644
--- a/Xamarin/Navigation-Drawer/Duration.md
+++ b/Xamarin/Navigation-Drawer/Duration.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Animation Duration in Xamarin Navigation Drawer control | Syncfusion
-description: Learn here all about Animation Duration support in Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
+title: Animation Duration in Xamarin Navigation Drawer Control | Syncfusion
+description: Explore the animation duration feature in the Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control.
platform: Xamarin
control: SfNavigationDrawer
documentation: ug
@@ -10,7 +10,7 @@ documentation: ug
## Animation Duration in SfNavigationDrawer
-The [`Duration`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_Duration) property of [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) indicates timeline for completing one animation cycle. Setting smaller duration value accelerates animation speed.
+The [`Duration`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_Duration) property of the [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) specifies the timeline for completing one animation cycle. Setting a smaller duration value increases the animation speed.
{% tabs %}
diff --git a/Xamarin/Navigation-Drawer/Getting-Started.md b/Xamarin/Navigation-Drawer/Getting-Started.md
index b2b3d17e8..7480395a4 100644
--- a/Xamarin/Navigation-Drawer/Getting-Started.md
+++ b/Xamarin/Navigation-Drawer/Getting-Started.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Getting Started with Xamarin Navigation Drawer control | Syncfusion
-description: Learn here about getting started with Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control, its elements and more.
+title: Getting Started with Xamarin Navigation Drawer Control | Syncfusion
+description: Discover how to get started with the Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control, its elements, and more.
platform: Xamarin
control: NavigationDrawer
documentation: ug
@@ -9,35 +9,35 @@ documentation: ug
# Getting Started with Xamarin Navigation Drawer (SfNavigationDrawer)
-This section explains you the steps required to create a navigation DrawerPanel with content area and data filled drawer and it covers only the minimal features that you need to know to get started with the NavigationDrawer.
+This section outlines the steps required to create a navigation drawer with a content area and data-filled drawer. It covers the essential features you need to know to get started with the NavigationDrawer.
-## Assembly deployment
+## Assembly Deployment
-After installing [Essential Studio® for Xamarin](https://www.syncfusion.com/downloads/xamarin), you can find all the required assemblies in the installation folders, {Syncfusion Essential Studio Installed location} \Essential Studio\\{Version #}\Xamarin\lib.
+After installing [Essential Studio® for Xamarin](https://www.syncfusion.com/downloads/xamarin), you can find all the required assemblies in the installation folders: `{Syncfusion Essential Studio Installed location}\Essential Studio\{Version#}\Xamarin\lib`.
E.g.: C:\Program Files (x86) \Syncfusion\Essential Studio\19.1.0.54\Xamarin\lib
-N> Assemblies can be found in unzipped package location(Documents/Syncfusion/{Version #}/Xamarin/lib) in Mac.
+> Note: Assemblies can be found in the unzipped package location (Documents/Syncfusion/{Version#}/Xamarin/lib) on Mac.
-## Adding SfNavigationDrawer reference
+## Adding SfNavigationDrawer Reference
-You can add [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) reference using one of the following methods:
+You can add the [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) reference using one of the following methods:
-**Method 1: Adding SfNavigationDrawer reference from nuget.org**
+**Method 1: Adding SfNavigationDrawer Reference from NuGet.org**
-Syncfusion Xamarin components are available in [nuget.org](https://www.nuget.org/). To add [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) to your project, open the NuGet package manager in Visual Studio, search for [Syncfusion.Xamarin.SfNavigationDrawer](https://www.nuget.org/packages/Syncfusion.Xamarin.SfNavigationDrawer), and then install it.
+Syncfusion Xamarin components are available on [nuget.org](https://www.nuget.org/). To add [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) to your project, open the NuGet Package Manager in Visual Studio, search for [Syncfusion.Xamarin.SfNavigationDrawer](https://www.nuget.org/packages/Syncfusion.Xamarin.SfNavigationDrawer), and then install it.

-N> Install the same version of SfNavigationDrawer NuGet in all the projects.
+> Note: Install the same version of the SfNavigationDrawer NuGet in all projects.
-**Method 2: Adding SfNavigationDrawer reference from toolbox**
+**Method 2: Adding SfNavigationDrawer Reference from Toolbox**
-Syncfusion also provides Xamarin Toolbox. Using this toolbox, you can drag the [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) control to the XAML page. It will automatically install the required NuGet packages and add the namespace to the page. To install Syncfusion Xamarin Toolbox, refer to [Toolbox](https://help.syncfusion.com/xamarin/utility#toolbox).
+Syncfusion also provides a Xamarin Toolbox. Using this toolbox, you can drag the [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) control to the XAML page. It will automatically install the required NuGet packages and add the namespace to the page. To install Syncfusion Xamarin Toolbox, refer to [Toolbox](https://help.syncfusion.com/xamarin/utility#toolbox).
-**Method 3: Adding SfNavigationDrawer assemblies manually from the installed location**
+**Method 3: Adding SfNavigationDrawer Assemblies Manually from the Installed Location**
-If you prefer to manually reference the assemblies instead referencing from NuGet, add the following assemblies in respective projects.
+If you prefer to manually reference the assemblies instead of referencing from NuGet, add the following assemblies in respective projects.
Location: {Installed location}/{version}/Xamarin/lib
@@ -60,17 +60,15 @@ Location: {Installed location}/{version}/Xamarin/lib
-N> To know more about obtaining our components, refer to these links for [Mac](https://help.syncfusion.com/xamarin/installation/mac-installer/how-to-download) and [Windows](https://help.syncfusion.com/xamarin/installation/web-installer/how-to-download).
+> Important: Starting with v16.2.0.x, if you reference Syncfusion assemblies from the trial setup or from the NuGet feed, you also need to include a license key in your projects. Please refer to [Syncfusion license key](https://help.syncfusion.com/common/essential-studio/licensing/overview) to learn about registering the Syncfusion license key in your Xamarin application for using our components.
-I> Starting with v16.2.0.x, if you reference Syncfusion assemblies from the trial setup or from the NuGet feed, you also have to include a license key in your projects. Please refer to [Syncfusion license key](https://help.syncfusion.com/common/essential-studio/licensing/overview) to know about registering Syncfusion license key in your Xamarin application to use our components.
-
-N> After adding the reference, an additional step is required for iOS and UWP projects. If you are adding the references from toolbox, this step is not needed.
+> Note: After adding the reference, an additional step is required for iOS and UWP projects. If you are adding the references from the toolbox, this step is not needed.
### Additional Step for iOS
-Currently an additional step is required for iOS project. We need to create an instance of the NavigationDrawer custom renderer as shown below.
+Currently, an additional step is required for iOS projects. You need to create an instance of the NavigationDrawer custom renderer as shown below.
-Create an instance of SfNavigationDrawerRenderer in FinishedLaunching overridden method of AppDelegate class in iOS project as shown below:
+Create an instance of `SfNavigationDrawerRenderer` in the `FinishedLaunching` overridden method of the `AppDelegate` class in the iOS project:
{% tabs %}
@@ -94,7 +92,7 @@ return base.FinishedLaunching(app, options);
### Additional Step for UWP
-This step is required only if application is deployed in Release mode with .NET native tool chain enabled and it is for resolving the known Framework issue “Custom controls not rendering in Release mode” in UWP platform. Initializing the [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) assembly at OnLaunched overridden method of App class in UWP project is the suggested workaround. And the code example is shown below:
+This step is required only if the application is deployed in Release mode with the .NET native tool chain enabled and is intended to resolve the known Framework issue “Custom controls not rendering in Release mode” on the UWP platform. Initializing the [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) assembly in the `OnLaunched` overridden method of the `App` class in the UWP project is the suggested workaround. The code example is shown below:
{% tabs %}
@@ -170,7 +168,7 @@ Window.Current.Activate();
## Initialize SfNavigationDrawer
-Import the [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) namespace in respective Page as shown below:
+Import the [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) namespace in the respective page as shown below:
{% tabs %}
@@ -188,7 +186,7 @@ Import the [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfus
{% endtabs %}
-Then initialize an empty navigation drawer as shown below,
+Then initialize an empty navigation drawer as shown below:
{% tabs %}
{% highlight xaml %}
@@ -231,11 +229,11 @@ namespace NaviSample
{% endtabs %}
-N> It is mandatory to set [`ContentView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_ContentView) for [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) on initializing.
+> Note: It is mandatory to set the [`ContentView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_ContentView) for [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) upon initialization.
## Adjust Drawer Size
-The default position of navigation pane is left so let us change the drawer width to 200.
+The default position of the navigation pane is on the left, so let's change the drawer width to 200.
{% tabs %}
{% highlight xaml %}
@@ -283,12 +281,11 @@ namespace NaviSample
{% endtabs %}
-
-N> For changing the side of navigation pane use [`Position`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_Position) property. Use [`DrawerHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerWidth) property to change the drawer height in Top and Bottom positions.
+> Note: To change the side of the navigation pane, use the [`Position`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_Position) property. To adjust the drawer height in the Top and Bottom positions, use the [`DrawerHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerWidth) property.
## Add Hamburger Menu for Toggling Drawer
-Create a button and set required image to the [`Image`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.Buttons.SfButton.html#Syncfusion_XForms_Buttons_SfButton_Image) property of Button. Subscribe Clicked event of the button and invoke ToggleDrawer() method in it to toggle the drawer. Set this button as [`ContentView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_ContentView) property of SfNavigationDrawer. Align the layout of [`ContentView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_ContentView) properly to get the hamburger icon at top left as shown in following code:
+Create a button and set the required image to the [`Image`](https://help.syncfusion.com/cr/xamarin/Syncfusion.XForms.Buttons.SfButton.html#Syncfusion_XForms_Buttons_SfButton_Image) property of the button. Subscribe to the Clicked event of the button and invoke the `ToggleDrawer()` method in it to toggle the drawer. Set this button as the [`ContentView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_ContentView) property of `SfNavigationDrawer`. Align the layout of [`ContentView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_ContentView) properly to get the hamburger icon at the top left as shown in the following code:
{% tabs %}
@@ -366,7 +363,7 @@ namespace NaviSample
{% endtabs %}
-N> Add the required images in drawable folder of Android project, Assets folder of iOS project and add it directly to the UWP project.
+> Note: Add the required images to the drawable folder of the Android project, the Assets folder of the iOS project, and add them directly to the UWP project.

diff --git a/Xamarin/Navigation-Drawer/Main-Content.md b/Xamarin/Navigation-Drawer/Main-Content.md
index 65f5892d1..ab9764c1e 100644
--- a/Xamarin/Navigation-Drawer/Main-Content.md
+++ b/Xamarin/Navigation-Drawer/Main-Content.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Setting Main Content in Xamarin Navigation Drawer control | Syncfusion
-description: Learn here all about Setting Main Content support in Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
+title: Setting Main Content in Xamarin Navigation Drawer Control | Syncfusion
+description: Discover how to set the main content in the Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
platform: Xamarin
control: NavigationDrawer
documentation: ug
@@ -10,7 +10,7 @@ documentation: ug
# Setting Main Content in Xamarin Navigation Drawer (SfNavigationDrawer)
-Main content of NavigationDrawer is always visible and it can be set using [`ContentView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_ContentView) property. In the following code example, [`ContentView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_ContentView) is switched when selection changes in ListView.
+The main content of the NavigationDrawer is always visible and can be set using the [`ContentView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_ContentView) property. In the following code example, the `ContentView` is updated when the selection changes in a ListView.
{% tabs %}
@@ -206,8 +206,8 @@ namespace NaviSample
{% endtabs %}
-N> It is mandatory to set [`ContentView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_ContentView) for [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) on initializing.
+> Note: It is mandatory to set [`ContentView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_ContentView) for [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) upon initialization.

-You can find the complete Sample from this [link.](https://github.com/SyncfusionExamples/navigation-drawer-main-content)
+You can find the complete sample from this [link.](https://github.com/SyncfusionExamples/navigation-drawer-main-content)
diff --git a/Xamarin/Navigation-Drawer/Multi-drawer.md b/Xamarin/Navigation-Drawer/Multi-drawer.md
index 3576d7f5a..f53fe3e1a 100644
--- a/Xamarin/Navigation-Drawer/Multi-drawer.md
+++ b/Xamarin/Navigation-Drawer/Multi-drawer.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Multi Drawer in Xamarin Navigation Drawer control | Syncfusion
-description: Learn here all about Multi Drawer support in Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
+title: Multi Drawer in Xamarin Navigation Drawer Control | Syncfusion
+description: Discover multi-drawer support in the Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
platform: Xamarin
control: NavigationDrawer
documentation: ug
@@ -10,16 +10,16 @@ documentation: ug
# Multi Drawer in Xamarin Navigation Drawer (SfNavigationDrawer)
-The navigation drawer allows users to open the drawer on multiple sides with different toggle methods. The [`DrawerSettings`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.DrawerSettings.html) class and its properties need to be used when users need to provide multiple drawer. The multiple drawers can be implemented using the following drawer settings.
+The navigation drawer allows users to open drawers on multiple sides with different toggle methods. The [`DrawerSettings`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.DrawerSettings.html) class and its properties are used to provide multiple drawers. The multiple drawers can be implemented using the following drawer settings:
-* [`Default drawer settings`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DefaultDrawerSettings)
-* [`Secondary drawer settings`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_SecondaryDrawerSettings)
+- [`Default drawer settings`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DefaultDrawerSettings)
+- [`Secondary drawer settings`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_SecondaryDrawerSettings)
-N> The header and footer content are optional, but the drawer content is mandatory to allocate space for the drawer.
+> Note: The header and footer content are optional, but the drawer content is mandatory to allocate space for the drawer.
-## Default drawer settings
+## Default Drawer Settings
-Implement the default drawer using the default drawer settings class. The following code sample demonstrates how to set the default drawer settings's properties inside the [`DrawerSettings`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.DrawerSettings.html) class.
+Implement the default drawer using the default drawer settings class. The following code sample demonstrates setting properties for the default drawer settings inside the [`DrawerSettings`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.DrawerSettings.html) class.
{% tabs %}
@@ -545,3 +545,4 @@ N> Users can open only one drawer at a time.
Note: The sample for implementing multiple drawers can be downloaded from this [link](https://github.com/SyncfusionExamples/multi-drawer-content).
+
diff --git a/Xamarin/Navigation-Drawer/Navigation-Pane-Sides.md b/Xamarin/Navigation-Drawer/Navigation-Pane-Sides.md
index e035d96a0..78246e51d 100644
--- a/Xamarin/Navigation-Drawer/Navigation-Pane-Sides.md
+++ b/Xamarin/Navigation-Drawer/Navigation-Pane-Sides.md
@@ -1,28 +1,25 @@
---
layout: post
-title: Configuring The Drawer In Xamarin Navigation Drawer | Syncfusion
-description: Learn here all about Configuring The Drawer In Different Sides support in Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
+title: Configuring the Drawer in Xamarin Navigation Drawer | Syncfusion
+description: Learn about configuring the drawer on different sides in the Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
platform: Xamarin
control: NavigationDrawer
documentation: ug
---
-# Configuring The Drawer In Different Sides in Xamarin Navigation Drawer
+# Configuring the Drawer on Different Sides in Xamarin Navigation Drawer
-The supplemental pane can be drawn in and out from all four sides. [`Position`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_Position) property is used to change the side of pane and the values are
+The supplemental pane can be drawn in and out from all four sides. The [`Position`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_Position) property is used to change the side of the pane. The possible values are:
-* [`Left`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Left)
+- [`Left`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Left)
+- [`Right`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Right)
+- [`Top`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Top)
+- [`Bottom`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Bottom)
-* [`Right`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Right)
-
-* [`Top`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Top)
-
-* [`Bottom`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Bottom)
-
-N> The default position is [`Left`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Left).
+> Note: The default position is [`Left`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Left).
## Left
-The navigation pane draws in and out from [`Left`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Left) side. It can be set as shown below:
+The navigation pane draws in and out from the [`Left`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Left) side. It can be set as shown below:
{% tabs %}
@@ -123,7 +120,7 @@ namespace NaviSample
## Right
-The navigation pane draws in and out from [`Right`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Right) side. It can be set as shown below:
+The navigation pane draws in and out from the [`Right`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Right) side. It can be set as shown below:
{% tabs %}
@@ -225,7 +222,7 @@ namespace NaviSample
## Top
-The navigation pane draws in and out from [`Top`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Top) side. It can be set as shown below:
+The navigation pane draws in and out from the [`Top`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Top) side. It can be set as shown below:
{% tabs %}
@@ -328,7 +325,7 @@ namespace NaviSample
## Bottom
-The navigation pane draws in and out from [`Bottom`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Bottom) side. It can be set as shown below:
+The navigation pane draws in and out from the [`Bottom`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Bottom) side. It can be set as shown below:
{% tabs %}
diff --git a/Xamarin/Navigation-Drawer/Overview.md b/Xamarin/Navigation-Drawer/Overview.md
index 502547a83..a8768e268 100644
--- a/Xamarin/Navigation-Drawer/Overview.md
+++ b/Xamarin/Navigation-Drawer/Overview.md
@@ -1,7 +1,7 @@
---
layout: post
-title: About Xamarin Navigation Drawer control | Syncfusion
-description: Learn here all about introduction of Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control, its elements and more.
+title: About Xamarin Navigation Drawer Control | Syncfusion
+description: Learn about the introduction of Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control, its elements, and more.
platform: Xamarin
control: NavigationDrawer
documentation: ug
@@ -9,14 +9,14 @@ documentation: ug
# Xamarin Navigation Drawer (SfNavigationDrawer) Overview
-Essential NavigationDrawer for Xamarin.Forms is a simpler component to create navigation pane in application. It has a content area and a sliding pane that slides out from the edge of the page. The pane can be opened by swiping the edges of the screen or programmatically.
+The Essential NavigationDrawer for Xamarin.Forms is a straightforward component used to create a navigation pane in applications. It consists of a content area and a sliding pane that can slide out from the edge of the page. The pane can be opened by swiping the screen edges or programmatically.

## Key Features
-* Pane positions – Supports pane position in all four directions such as Left, Right, Top and Bottom.
+- **Pane Positions**: Supports positioning the pane in all four directions—Left, Right, Top, and Bottom.
-* Animated transitions – Supports opening/closing of pane due to the transition SlideOnTop, Push and Reveal.
+- **Animated Transitions**: Allows for opening and closing the pane with transitions like SlideOnTop, Push, and Reveal.
-* Changeable swipe sensitivity – Flexible for the users to update touch threshold based on their device screen size.
\ No newline at end of file
+- **Adjustable Swipe Sensitivity**: Offers flexibility for users to adjust the touch threshold based on their device's screen size.
diff --git a/Xamarin/Navigation-Drawer/Side-Pane-Content.md b/Xamarin/Navigation-Drawer/Side-Pane-Content.md
index be4a9194f..02ac60512 100644
--- a/Xamarin/Navigation-Drawer/Side-Pane-Content.md
+++ b/Xamarin/Navigation-Drawer/Side-Pane-Content.md
@@ -1,7 +1,7 @@
---
layout: post
title: Setting Sliding Panel Content in Xamarin NavigationDrawer | Syncfusion
-description: Learn here all about Setting Sliding Panel Content support in Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
+description: Learn about setting sliding panel content support in the Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
platform: Xamarin
control: NavigationDrawer
documentation: ug
@@ -10,19 +10,17 @@ documentation: ug
# Setting Sliding Panel Content in Xamarin Navigation Drawer
-The drawer pane content is viewable only if drawer is in open state. Its content can be set as
+The drawer pane content is viewable only when the drawer is in an open state. Its content can be set as:
-* Header Content
+- Header Content
+- Drawer Content
+- Footer Content
-* Drawer Content
-
-* Footer Content
-
-N> Header and Footer content are optional but Drawer content is mandatory to allocate space for the drawer.
+> Note: Header and Footer content are optional, but Drawer content is mandatory to allocate space for the drawer.
## Header Content
-As the name suggests it is displayed at the top of drawer. [`DrawerHeaderView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerHeaderView) property is used to set the header content of drawer.
+As the name suggests, it is displayed at the top of the drawer. The [`DrawerHeaderView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerHeaderView) property is used to set the header content of the drawer.
{% tabs %}
@@ -96,9 +94,9 @@ namespace NaviSample
## Header Height
-Height of the drawer header content can be adjusted using [`DrawerHeaderHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerHeaderHeight) property.
+The height of the drawer header content can be adjusted using the [`DrawerHeaderHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerHeaderHeight) property.
-N> [`DrawerHeaderView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerHeaderView) will be disabled by setting [`DrawerHeaderHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerHeaderHeight) to zero
+> Note: The [`DrawerHeaderView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerHeaderView) will be disabled by setting the [`DrawerHeaderHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerHeaderHeight) to zero.
{% tabs %}
@@ -172,7 +170,7 @@ namespace NaviSample
## Footer Content
-As the name suggests it is displayed at the bottom of drawer. [`DrawerFooterView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerFooterView) property is used to set the footer content of drawer.
+As the name suggests, it is displayed at the bottom of the drawer. The [`DrawerFooterView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerFooterView) property is used to set the footer content of the drawer.
{% tabs %}
@@ -245,9 +243,9 @@ namespace NaviSample
## Footer Height
-Height of the drawer footer content can be adjusted using [`DrawerFooterHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerFooterHeight) property.
+The height of the drawer footer content can be adjusted using the [`DrawerFooterHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerFooterHeight) property.
-N> [`DrawerFooterView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerFooterView) will be disabled by setting [`DrawerFooterHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerFooterHeight) to zero
+> Note: The [`DrawerFooterView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerFooterView) will be disabled by setting the [`DrawerFooterHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerFooterHeight) to zero.
{% tabs %}
@@ -317,11 +315,11 @@ namespace NaviSample
{% endtabs %}
-
+
## Main Content
-Drawer main content is displayed in between header and footer content. It can be set using [`DrawerContentView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerContentView) property. Content view occupies the remaining space left by header and footer content.
+The drawer's main content is displayed between the header and footer content. It can be set using the [`DrawerContentView`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerContentView) property. The content view occupies the remaining space left by the header and footer content.
{% tabs %}
diff --git a/Xamarin/Navigation-Drawer/Side-Pane-Sizing.md b/Xamarin/Navigation-Drawer/Side-Pane-Sizing.md
index 1624c1397..ec09f1e55 100644
--- a/Xamarin/Navigation-Drawer/Side-Pane-Sizing.md
+++ b/Xamarin/Navigation-Drawer/Side-Pane-Sizing.md
@@ -1,18 +1,18 @@
---
layout: post
-title: Setting Sliding Panel size in Xamarin Navigation Drawer | Syncfusion
-description: Learn here all about Setting Sliding Panel size support in Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
+title: Setting Sliding Panel Size in Xamarin Navigation Drawer | Syncfusion
+description: Learn about setting sliding panel size support in the Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
platform: Xamarin
control: NavigationDrawer
documentation: ug
---
-# Setting Sliding Panel size in Xamarin Navigation Drawer
+# Setting Sliding Panel Size in Xamarin Navigation Drawer
-The size of side pane can be adjusted using [`DrawerHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerHeight) and [`DrawerWidth`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerWidth) properties.
+The size of the side pane can be adjusted using the [`DrawerHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerHeight) and [`DrawerWidth`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerWidth) properties.
## Drawer Height
-[`DrawerHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerHeight) property is used to change the height of side pane when the [`Position`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_Position) is [`Top`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Top) or [`Bottom`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Bottom).
+The [`DrawerHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_DrawerHeight) property is used to change the height of the side pane when the [`Position`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_Position) is set to [`Top`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Top) or [`Bottom`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Position.html#Syncfusion_SfNavigationDrawer_XForms_Position_Bottom).
{% tabs %}
diff --git a/Xamarin/Navigation-Drawer/Swipe-Gesture-and-Sensitivity.md b/Xamarin/Navigation-Drawer/Swipe-Gesture-and-Sensitivity.md
index 297e39885..4bf54016b 100644
--- a/Xamarin/Navigation-Drawer/Swipe-Gesture-and-Sensitivity.md
+++ b/Xamarin/Navigation-Drawer/Swipe-Gesture-and-Sensitivity.md
@@ -1,18 +1,18 @@
---
layout: post
-title: SwipGesture and Sensitivity in Xamarin Navigation Drawer | Syncfusion
-description: Learn here all about SwipGesture and its Sensitivity support in Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
+title: Swipe Gesture and Sensitivity in Xamarin Navigation Drawer | Syncfusion
+description: Learn about Swipe Gesture and its Sensitivity support in the Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
platform: Xamarin
control: NavigationDrawer
documentation: ug
---
-# SwipeGesture and its Sensitivity in Xamarin Navigation Drawer
+# Swipe Gesture and Its Sensitivity in Xamarin Navigation Drawer
-NavigationDrawer supports swipe gesture for opening and closing the drawer.
+The NavigationDrawer supports swipe gestures for opening and closing the drawer.
## Enabling Swipe Gesture
-It can be enabled/disabled using [`EnableSwipeGesture`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_EnableSwipeGesture) property.
+Swipe Gesture can be enabled or disabled using the [`EnableSwipeGesture`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_EnableSwipeGesture) property.
{% tabs %}
@@ -51,7 +51,7 @@ navigationDrawer.EnableSwipeGesture = true;
## Swipe Sensitivity
-In smaller screens user may find it difficult to swipe the drawer from the edge in such cases we can increase the swipe region using [`TouchThreshold`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_TouchThreshold) property. It can be set as below:
+On smaller screens, users may find it difficult to swipe the drawer open from the edge. In such cases, the swipe region can be increased using the [`TouchThreshold`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_TouchThreshold) property. It can be set as demonstrated below:
{% tabs %}
diff --git a/Xamarin/Navigation-Drawer/Toggle-Animations.md b/Xamarin/Navigation-Drawer/Toggle-Animations.md
index f252cee4c..0f1c3e00b 100644
--- a/Xamarin/Navigation-Drawer/Toggle-Animations.md
+++ b/Xamarin/Navigation-Drawer/Toggle-Animations.md
@@ -1,22 +1,20 @@
---
layout: post
title: Setting Toggle Animations in Xamarin Navigation Drawer | Syncfusion
-description: Learn here all about Setting Toggle Animations support in Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
+description: Learn about setting toggle animation support in the Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
platform: Xamarin
control: NavigationDrawer
documentation: ug
---
# Setting Toggle Animations in Xamarin Navigation Drawer
-The drawer toggling animation can be changed using [`Transition`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_Transition) property and it can be set to three different values. They are
+The drawer toggling animation can be changed using the [`Transition`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_Transition) property, which can be set to one of three different values:
-* [`SlideOnTop`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Transition.html#Syncfusion_SfNavigationDrawer_XForms_Transition_SlideOnTop)
+- [`SlideOnTop`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Transition.html#Syncfusion_SfNavigationDrawer_XForms_Transition_SlideOnTop)
+- [`Push`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Transition.html#Syncfusion_SfNavigationDrawer_XForms_Transition_Push)
+- [`Reveal`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Transition.html#Syncfusion_SfNavigationDrawer_XForms_Transition_Reveal)
-* [`Push`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Transition.html#Syncfusion_SfNavigationDrawer_XForms_Transition_Push)
-
-* [`Reveal`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Transition.html#Syncfusion_SfNavigationDrawer_XForms_Transition_Reveal)
-
-N> The default animation is [`SlideOnTop`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Transition.html#Syncfusion_SfNavigationDrawer_XForms_Transition_SlideOnTop).
+> Note: The default animation is [`SlideOnTop`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.Transition.html#Syncfusion_SfNavigationDrawer_XForms_Transition_SlideOnTop).
## SlideOnTop
@@ -99,7 +97,7 @@ namespace NaviSample
## Push
-The navigation pane is hidden. It pushes the main content area in opposite side up to drawer width when opened. It can be set as shown below:
+The navigation pane is hidden. It pushes the main content area in the opposite direction up to the drawer width when opened. It can be set as shown below:
{% tabs %}
@@ -178,7 +176,7 @@ namespace NaviSample
## Reveal
-The navigation pane is hidden behind the main content. Main content moves away in opposite side up to drawer width to show the drawer content. It can be set as shown below:
+The navigation pane is hidden behind the main content. The main content moves away in the opposite direction up to the drawer width to reveal the drawer content. It can be set as shown below:
{% tabs %}
diff --git a/Xamarin/Navigation-Drawer/Toggling-Drawer.md b/Xamarin/Navigation-Drawer/Toggling-Drawer.md
index b1053084a..0fa396f16 100644
--- a/Xamarin/Navigation-Drawer/Toggling-Drawer.md
+++ b/Xamarin/Navigation-Drawer/Toggling-Drawer.md
@@ -1,23 +1,21 @@
---
layout: post
-title: Toggle methods in Xamarin Navigation Drawer control | Syncfusion
-description: Learn here all about Toggle methods support in Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
+title: Toggle Methods in Xamarin Navigation Drawer Control | Syncfusion
+description: Explore toggle methods support in the Syncfusion Xamarin Navigation Drawer (SfNavigationDrawer) control and more.
platform: Xamarin
control: NavigationDrawer
documentation: ug
---
-# Toggle methods in Xamarin Navigation Drawer (SfNavigationDrawer)
+# Toggle Methods in Xamarin Navigation Drawer (SfNavigationDrawer)
-Drawer can be toggled using
+The drawer can be toggled using:
-* IsOpen property
-
-* ToggleDrawer method
-
-* Swipe gesture
+- `IsOpen` property
+- `ToggleDrawer` method
+- Swipe gesture
## Opening Drawer Programmatically
-[`IsOpen`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_IsOpen) property and [`ToggleDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_ToggleDrawer) method can be used to open or close the drawer programmatically.
+The [`IsOpen`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_IsOpen) property and the [`ToggleDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_ToggleDrawer) method can be used to open or close the drawer programmatically.
{% tabs %}
@@ -54,7 +52,7 @@ navigationDrawer.IsOpen = true;
{% endtabs %}
-Using [`ToggleDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_ToggleDrawer) method,
+Using the [`ToggleDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_ToggleDrawer) method:
{% highlight c# %}
@@ -62,13 +60,13 @@ navigationDrawer.ToggleDrawer();
{% endhighlight %}
-Toggling drawer by swipe gesture is explained in [`Swipe Gesture and Sensitivity`](https://help.syncfusion.com/xamarin/navigation-drawer/swipe-gesture-and-sensitivity) section.
+Toggling the drawer by swipe gesture is explained in the [Swipe Gesture and Sensitivity](https://help.syncfusion.com/xamarin/navigation-drawer/swipe-gesture-and-sensitivity) section.
## Opening Drawer via Binding
-[`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) can be used in any MVVM architecture application easily. In the below example, [`SfNavigationDrawer.IsOpen`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_IsOpen) property is bound to a property in the ViewModel, based on which the drawer is opened or closed. Refer the below code example to display drawer in MVVM.
+The [`SfNavigationDrawer`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html) can be easily used in any MVVM architecture application. In the example below, the [`SfNavigationDrawer.IsOpen`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_IsOpen) property is bound to a property in the ViewModel, based on which the drawer is opened or closed. Refer to the code example below to display the drawer in MVVM.
-In the following code sample, note that the Binding context is set for the page and the property (OpenDrawer) of the ViewModel is bound to the [`SfNavigationDrawer.IsOpen`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_IsOpen).
+In the following code sample, note that the Binding context is set for the page and the property (`OpenDrawer`) of the ViewModel is bound to the [`SfNavigationDrawer.IsOpen`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfNavigationDrawer.XForms.SfNavigationDrawer.html#Syncfusion_SfNavigationDrawer_XForms_SfNavigationDrawer_IsOpen).
{% tabs %}
diff --git a/Xamarin/Radial-Menu/Accessibility.md b/Xamarin/Radial-Menu/Accessibility.md
index f26a4df40..79fdf1993 100644
--- a/Xamarin/Radial-Menu/Accessibility.md
+++ b/Xamarin/Radial-Menu/Accessibility.md
@@ -1,19 +1,20 @@
---
-layout : post
-title: Accessibility in Xamarin Radial Menu control | Syncfusion
-description: Learn here all about Accessibility support in Syncfusion Xamarin Radial Menu (SfRadialMenu) control and more.
-platform : Xamarin.Forms
-control : SfRadialMenu
-documentation : ug
+layout: post
+title: Accessibility in Xamarin Radial Menu Control | Syncfusion
+description: Discover accessibility support in the Syncfusion Xamarin Radial Menu (SfRadialMenu) control and more.
+platform: Xamarin.Forms
+control: SfRadialMenu
+documentation: ug
---
-# Accessibility in Xamarin RadialMenu(SfRadialMenu)
+# Accessibility in Xamarin Radial Menu (SfRadialMenu)
+
## AutomationId
-The [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) control has built-in `AutomationId` for inner elements. The `AutomationId` API allows the automation framework to find and interact with the inner elements of the [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) control. To keep unique AutomationId, these inner elements AutomationIds are updated based on the control's `AutomationId`.
+The [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) control includes built-in `AutomationId` support for its inner elements. The `AutomationId` API enables the automation framework to find and interact with the inner elements of the [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) control. To ensure unique `AutomationIds`, these identifiers are updated based on the control's `AutomationId`.
-For example, if you set SfRadialMenu's `AutomationId` as "Circular Menu" and the first SfRadialMenuItem's `AutomationId` as "Circular Menu List", then the automation framework will interact with the center button as "Circular Menu Center Button" and the first radial item as "Circular Menu List Item 4 of 6" (6 denotes the total count).
+For instance, if you assign the `AutomationId` of the SfRadialMenu as "Circular Menu" and the first SfRadialMenuItem's `AutomationId` as "Circular Menu List", the automation framework will identify the center button as "Circular Menu Center Button" and the first radial item as "Circular Menu List Item 4 of 6" (where 6 denotes the total item count).
-The following screenshot illustrates the AutomationIds of inner elements. The automation framework will interact with the Center Back Button as "Circular Menu Center Back Button".
+Below is a screenshot illustrating the AutomationIds of inner elements. The automation framework will recognize the Center Back Button as "Circular Menu Center Back Button".

diff --git a/Xamarin/Radial-Menu/CenterButton-Customization.md b/Xamarin/Radial-Menu/CenterButton-Customization.md
index 5a9f65480..00dc5e0e1 100644
--- a/Xamarin/Radial-Menu/CenterButton-Customization.md
+++ b/Xamarin/Radial-Menu/CenterButton-Customization.md
@@ -1,19 +1,19 @@
---
layout: post
-title: CenterButton Customization in Xamarin Radial Menu control | Syncfusion
-description: Learn here all about CenterButton Customization support in Syncfusion Xamarin Radial Menu (SfRadialMenu) control and more.
+title: Center Button Customization in Xamarin Radial Menu Control | Syncfusion
+description: Discover Center Button customization support in the Syncfusion Xamarin Radial Menu (SfRadialMenu) control and more.
platform: Xamarin
control: SfRadialMenu
documentation: ug
---
-# CenterButton Customization in Xamarin Radial Menu (SfRadialMenu)
+# Center Button Customization in Xamarin Radial Menu (SfRadialMenu)
-The CenterButton or BackButton in radial menu is a view in the center of the radial menu. It performs the operations such as opening and closing the rim and navigating to next level items. The radial menu allows you customize the CenterButton/BackButton with `FontIcon`, `Custom View`, and `Caption`.
+The Center Button or Back Button in the radial menu acts as the central element of the radial menu. It facilitates operations such as opening and closing the rim and navigating to the next level of items. The radial menu allows customization of the Center Button/Back Button with options like `FontIcon`, `Custom View`, and `Caption`.
## CenterButtonText and CenterButtonBackText
-The [`CenterButtonText`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_CenterButtonTextProperty) changes the text of the center button in [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html), and the [`CenterButtonBackText`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_CenterButtonBackTextProperty) changes the text of the center back button in [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html).
+The [`CenterButtonText`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_CenterButtonTextProperty) property changes the text of the center button in [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html), while the [`CenterButtonBackText`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_CenterButtonBackTextProperty) changes the text of the center back button.
{% tabs %}
diff --git a/Xamarin/Radial-Menu/Events.md b/Xamarin/Radial-Menu/Events.md
index 917861ab8..3b3dce9e9 100644
--- a/Xamarin/Radial-Menu/Events.md
+++ b/Xamarin/Radial-Menu/Events.md
@@ -1,17 +1,16 @@
---
-layout : post
-title: Events in Xamarin Radial Menu control | Syncfusion
-description: Learn here all about Events support in Syncfusion Xamarin Radial Menu (SfRadialMenu) control and more.
-platform : xamarin
-control : SfRadialMenu
-documentation : ug
+layout: post
+title: Events in Xamarin Radial Menu Control | Syncfusion
+description: Discover the event support in Syncfusion Xamarin Radial Menu (SfRadialMenu) control and more.
+platform: Xamarin
+control: SfRadialMenu
+documentation: ug
---
# Events in Xamarin Radial Menu (SfRadialMenu)
-## Perform an action while navigating to next level
-
-In radial menu, you can perform an action while navigating from one level to another level. The [`Navigating`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) event occurs when navigating from one level to another level and the [`Navigated`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) event occurs after navigating to another level.
+## Events When Navigating to the Next Level
+In the radial menu, you can perform actions while navigating between levels. The [`Navigating`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) event triggers when moving from one level to another, and the [`Navigated`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) event triggers after reaching a new level.
{% tabs %}
@@ -82,11 +81,11 @@ namespace RadialSample
{% endtabs %}
-N> You can cancel navigation using the `Cancel` event argument.
+> Note: Navigation can be canceled using the `Cancel` event argument.
-## Perform an action while opening the radial menu
+## Events While Opening the Radial Menu
-You can perform an action while opening the radial menu. The [`Opening`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) event occurs when opening the radial menu and the [`Opened`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) event occurs after opening the radial menu.
+You can perform actions while opening the radial menu. The [`Opening`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) event triggers when the radial menu is opening, and the [`Opened`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) event triggers after the radial menu is open.
{% tabs %}
@@ -157,9 +156,9 @@ namespace RadialSample
{% endtabs %}
-## Perform an action while closing the radial menu
+## Events While Closing the Radial Menu
-You can perform an action when closing the radial menu. The [`Closing`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) event occurs when closing the radial menu and the [`Closed`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) event occurs after closing the radial menu.
+You can perform actions when closing the radial menu. The [`Closing`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) event triggers when the radial menu is closing, and the [`Closed`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) event triggers after the radial menu is closed.
{% tabs %}
@@ -231,9 +230,8 @@ namespace RadialSample
{% endtabs %}
-## Perform an action while tapping the center back button
-
-You can perform an action when tapping the center back button of the radial menu. The [`CenterButtonBackTapped`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) event occurs when tapping the center button of the radial menu.
+## Event for Center Back Button Tap
+You can perform actions when the center back button of the radial menu is tapped. The [`CenterButtonBackTapped`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) event triggers when this button is tapped.
{% tabs %}
@@ -296,9 +294,8 @@ namespace RadialSample
{% endtabs %}
-## Perform an action while tapping the radial menu item
-
-You can perform an action when tapping the radial menu item of the radial menu. The [`ItemTapped`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html) event occurs when tapping the items of the radial menu.
+## Event for Radial Menu Item Tap
+You can perform actions when a radial menu item is tapped. The [`ItemTapped`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html) event triggers when items in the radial menu are tapped.
{% tabs %}
diff --git a/Xamarin/Radial-Menu/Getting-Started.md b/Xamarin/Radial-Menu/Getting-Started.md
index 64b08aa66..b39a38a28 100644
--- a/Xamarin/Radial-Menu/Getting-Started.md
+++ b/Xamarin/Radial-Menu/Getting-Started.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Getting Started with Xamarin Radial Menu control | Syncfusion
-description: Learn here about getting started with Syncfusion Xamarin Radial Menu (SfRadialMenu) control, its elements and more.
+title: Getting Started with Xamarin Radial Menu Control | Syncfusion
+description: Learn about getting started with the Syncfusion Xamarin Radial Menu (SfRadialMenu) control, its elements, and more.
platform: Xamarin
control: SfRadialMenu
documentation: ug
@@ -9,35 +9,35 @@ documentation: ug
# Getting Started with Xamarin Radial Menu (SfRadialMenu)
-This section explains the steps required to launch the radial menu with hierarchical items that can be used as mobile phone system settings. This section covers only the minimal features that needed to get started with the radial menu.
+This section outlines the steps required to launch the radial menu with hierarchical items, which can be used for mobile phone system settings. It covers only the minimal features needed to get started with the radial menu.
-## Assembly deployment
+## Assembly Deployment
-After installing [Essential Studio® for Xamarin](https://www.syncfusion.com/downloads/xamarin), you can find all the required assemblies in the installation folders, {Syncfusion Essential Studio Installed location} \Essential Studio\\{Version #}\Xamarin\lib.
+After installing [Essential Studio® for Xamarin](https://www.syncfusion.com/downloads/xamarin), you can find all the required assemblies in the installation folders: `{Syncfusion Essential Studio Installed location}\Essential Studio\{Version #}\Xamarin\lib`.
E.g.: C:\Program Files (x86) \Syncfusion\Essential Studio\19.1.0.54\Xamarin\lib
-N> Assemblies can be found in unzipped package location(Documents/Syncfusion/{Version #}/Xamarin/lib) in Mac.
+> Note: Assemblies can be found in the unzipped package location (Documents/Syncfusion/{Version #}/Xamarin/lib) on Mac.
-## Adding SfRadialMenu reference
+## Adding SfRadialMenu Reference
-You can add [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) reference using one of the following methods:
+You can add the [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) reference using one of the following methods:
-**Method 1: Adding SfRadialMenu reference from nuget.org**
+**Method 1: Adding SfRadialMenu Reference from nuget.org**
-Syncfusion Xamarin components are available in [nuget.org](https://www.nuget.org/). To add [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) to your project, open the NuGet package manager in Visual Studio, search for [Syncfusion.Xamarin.SfRadialMenu](https://www.nuget.org/packages/Syncfusion.Xamarin.SfRadialMenu), and then install it.
+Syncfusion Xamarin components are available on [nuget.org](https://www.nuget.org/). To add the [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) to your project, open the NuGet package manager in Visual Studio, search for [Syncfusion.Xamarin.SfRadialMenu](https://www.nuget.org/packages/Syncfusion.Xamarin.SfRadialMenu), and then install it.

-N> Install the same version of SfRadialMenu NuGet in all the projects.
+> Note: Install the same version of the SfRadialMenu NuGet in all projects.
-**Method 2: Adding SfRadialMenu reference from toolbox**
+**Method 2: Adding SfRadialMenu Reference from Toolbox**
-Syncfusion also provides Xamarin Toolbox. Using this toolbox, you can drag the [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) control to the XAML page. It will automatically install the required NuGet packages and add the namespace to the page. To install Syncfusion Xamarin Toolbox, refer to [Toolbox](https://help.syncfusion.com/xamarin/utility#toolbox).
+Syncfusion also provides a Xamarin Toolbox. Using this toolbox, you can drag the [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) control to the XAML page. It will automatically install the required NuGet packages and add the namespace to the page. To install Syncfusion Xamarin Toolbox, refer to [Toolbox](https://help.syncfusion.com/xamarin/utility#toolbox).
-**Method 3: Adding SfRadialMenu assemblies manually from the installed location**
+**Method 3: Adding SfRadialMenu Assemblies Manually from the Installed Location**
-If you prefer to manually reference the assemblies instead referencing from NuGet, add the following assemblies in respective projects.
+If you prefer to manually reference the assemblies instead of referencing from NuGet, add the following assemblies in respective projects.
Location: {Installed location}/{version}/Xamarin/lib
diff --git a/Xamarin/Radial-Menu/Overview.md b/Xamarin/Radial-Menu/Overview.md
index ffab63e3e..97956a440 100644
--- a/Xamarin/Radial-Menu/Overview.md
+++ b/Xamarin/Radial-Menu/Overview.md
@@ -1,7 +1,7 @@
---
layout: post
-title: About Xamarin Radial Menu control | Syncfusion
-description: Learn here all about introduction of Syncfusion Xamarin Radial Menu (SfRadialMenu) control, its elements and more.
+title: About Xamarin Radial Menu Control | Syncfusion
+description: Learn about the introduction of the Syncfusion Xamarin Radial Menu (SfRadialMenu) control, its elements, and more.
platform: Xamarin
control: SfRadialMenu
documentation: ug
@@ -9,19 +9,19 @@ documentation: ug
# Xamarin Radial Menu (SfRadialMenu) Overview
-The Essential Xamarin SfRadialMenu displays a hierarchical menu in a circular layout, which is optimized for touch enabled devices. Typically, it is used as a context menu, and it can expose more menu items in the same space than traditional menus.
+The Essential Xamarin `SfRadialMenu` displays a hierarchical menu in a circular layout, optimized for touch-enabled devices. It is typically used as a context menu, allowing more menu items to be displayed in the same space than traditional menus.
-## Key features
+## Key Features
-Key features in SfRadialMenu:
+Key features of the `SfRadialMenu` include:
-* Drag — The SfRadialMenu can be floated over the layout to avoid obscuring the content behind it.
-* Rotation — SfRadialMenu supports rotating items.
-* FontIcon — The built-in icon font option helps users add vector images that prevent the control from experiencing any image glitches often faced with traditional image icons.
-* Custom view — SfRadialMenu supports the custom view like image.
-* Custom segments — Complete customization options for the menu and its items, such as coloring, sizing, placement, and shapes, using the segmentation option.
-* Auto arrange — SfRadialMenu supports automatic item arrangement.
-* Custom arrange — SfRadialMenu has options to place items as users needed.
+- **Drag**: The `SfRadialMenu` can be floated over the layout to avoid obscuring any content behind it.
+- **Rotation**: Supports rotating items within the `SfRadialMenu`.
+- **FontIcon**: The built-in icon font option helps users add vector images, preventing image glitches often faced with traditional image icons.
+- **Custom View**: Supports custom views, such as images.
+- **Custom Segments**: Offers complete customization options for the menu and its items, including coloring, sizing, placement, and shapes, using the segmentation option.
+- **Auto Arrange**: Supports automatic item arrangement.
+- **Custom Arrange**: Provides options to place items according to user preferences.

diff --git a/Xamarin/Radial-Menu/Place-And-Drag-RadialMenu.md b/Xamarin/Radial-Menu/Place-And-Drag-RadialMenu.md
index 1480af070..62693108f 100644
--- a/Xamarin/Radial-Menu/Place-And-Drag-RadialMenu.md
+++ b/Xamarin/Radial-Menu/Place-And-Drag-RadialMenu.md
@@ -1,7 +1,7 @@
---
layout: post
title: Placing and Dragging RadialMenu in Xamarin Radial Menu | Syncfusion
-description: Learn here all about Placing and Dragging RadialMenu support in Syncfusion Xamarin Radial Menu (SfRadialMenu) control and more.
+description: Learn about placing and dragging RadialMenu support in the Syncfusion Xamarin Radial Menu (SfRadialMenu) control and more.
platform: Xamarin
control: SfRadialMenu
documentation: ug
@@ -9,11 +9,11 @@ documentation: ug
# Placing and Dragging RadialMenu in Xamarin Radial Menu (SfRadialMenu)
-You can place radial menu anywhere on its parent layout, and drag it with in the parent layout.
+You can place the radial menu anywhere on its parent layout and drag it within the parent layout.
## Dragging RadialMenu
-You can enable/disable dragging by using the [`IsDragEnabled`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_IsDragEnabled) property.
+You can enable or disable dragging by using the [`IsDragEnabled`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_IsDragEnabled) property.
{% tabs %}
@@ -81,19 +81,18 @@ namespace RadialSample

-## DragEvents
+## Drag Events
-[`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) provides for event for [`DragBegin`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_DragBegin) and [`DragEnd`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_DragEnd) in which the event get hooked when the RadialMenu is get dragged.
+[`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) provides events for [`DragBegin`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_DragBegin) and [`DragEnd`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_DragEnd), which are triggered when the RadialMenu is dragged.
-### DragBegin event
+### DragBegin Event
-This event get triggered when RadialMenu is start to drag with [`DragBeginEventArgs`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.DragBeginEventArgs.html).
+This event is triggered when the RadialMenu begins to drag, utilizing the [`DragBeginEventArgs`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.DragBeginEventArgs.html).
-* [`Position`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.DragBeginEventArgs.html#Syncfusion_SfRadialMenu_XForms_DragBeginEventArgs_Position) - Gets the Start position of the RadialMenu
+- [`Position`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.DragBeginEventArgs.html#Syncfusion_SfRadialMenu_XForms_DragBeginEventArgs_Position): Gets the start position of the RadialMenu.
+- [`Handled`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.DragBeginEventArgs.html#Syncfusion_SfRadialMenu_XForms_DragBeginEventArgs_Handled): Gets and sets a boolean value for enabling and disabling the dragging of the RadialMenu.
-* [`Handled`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.DragBeginEventArgs.html#Syncfusion_SfRadialMenu_XForms_DragBeginEventArgs_Handled) - Gets and Sets the boolean value for enabling and disabling the dragging of RadialMenu.
-
-To hook the [`DragBegin`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_DragBegin) event, and to get the start position and restricts the dragging, follow the code example:
+To hook the [`DragBegin`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_DragBegin) event and get the start position while restricting dragging, refer to the following code example:
{% tabs %}
@@ -164,17 +163,15 @@ namespace RadialSample
{% endhighlight %}
{% endtabs %}
-### Drag End
-
-This event get triggered when dragging is ended in RadialMenu with [`DragEndEventArgs`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.DragEndEventArgs.html).
-
-* [`OldValue`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.DragEndEventArgs.html#Syncfusion_SfRadialMenu_XForms_DragEndEventArgs_OldValue) - Gets the Start position of the RadialMenu
+### DragEnd Event
-* [`NewValue`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.DragEndEventArgs.html#Syncfusion_SfRadialMenu_XForms_DragEndEventArgs_NewValue) - Gets the ens position of the RadialMenu
+This event is triggered when dragging ends in the RadialMenu, using [`DragEndEventArgs`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.DragEndEventArgs.html).
-* [`Handled`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.DragEndEventArgs.html#Syncfusion_SfRadialMenu_XForms_DragEndEventArgs_Handled) - Gets and Sets the boolean value for restricting the RadialMenu to move another position.
+- [`OldValue`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.DragEndEventArgs.html#Syncfusion_SfRadialMenu_XForms_DragEndEventArgs_OldValue): Gets the start position of the RadialMenu.
+- [`NewValue`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.DragEndEventArgs.html#Syncfusion_SfRadialMenu_XForms_DragEndEventArgs_NewValue): Gets the end position of the RadialMenu.
+- [`Handled`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.DragEndEventArgs.html#Syncfusion_SfRadialMenu_XForms_DragEndEventArgs_Handled): Gets and sets a boolean value for restricting the RadialMenu from moving to another position.
-To hook the [`DragEnd`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_DragEnd) event, and to get the start position, end position and restricts the movement of the RadialMenu, follow the code example:
+To hook the [`DragEnd`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_DragEnd) event and determine the start and end positions, while restricting the movement of the RadialMenu, refer to the following code example:
{% tabs %}
@@ -247,7 +244,7 @@ namespace RadialSample
## Placing RadialMenu
-You can place radial menu anywhere on its parent layout. Radial Menu's position is calculated based on parent layout's center point.
+You can position the radial menu anywhere on its parent layout. The radial menu's position is calculated based on the parent layout's center point.
{% tabs %}
diff --git a/Xamarin/Radial-Menu/Populating-Items.md b/Xamarin/Radial-Menu/Populating-Items.md
index 11632531b..5ed8dd78d 100644
--- a/Xamarin/Radial-Menu/Populating-Items.md
+++ b/Xamarin/Radial-Menu/Populating-Items.md
@@ -1,23 +1,23 @@
---
-layout : post
-title: Populating Items in Xamarin Radial Menu control | Syncfusion
-description: Learn here all about Populating Items support in Syncfusion Xamarin Radial Menu (SfRadialMenu) control and more.
-platform : xamarin
-control : SfRadialMenu
-documentation : ug
+layout: post
+title: Populating Items in Xamarin Radial Menu Control | Syncfusion
+description: Learn about populating items support in the Syncfusion Xamarin Radial Menu (SfRadialMenu) control and more.
+platform: Xamarin
+control: SfRadialMenu
+documentation: ug
---
# Populating Items in Xamarin Radial Menu (SfRadialMenu)
-This section explains the ways about populating items through radial menu item and item source with item template.
+This section explains the methods for populating items through radial menu items and item sources with item templates.
-## Through radial menu items
+## Through Radial Menu Items
-By passing a collection of [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html), you can get the view of [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) control. The radial menu item class provides various options to customize the items by giving custom views, font icons, and images. You can add radial menu items by hierarchy.
+By passing a collection of [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html), you can view the [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) control. The radial menu item class provides various options to customize items by giving custom views, font icons, and images. You can also add radial menu items in a hierarchical manner.
-### Adding outer rim items of radial menu
+### Adding Outer Rim Items to the Radial Menu
-The following code snippet demonstrates how to add the outer rim items of radial menu.
+The following code snippet demonstrates how to add outer rim items to a radial menu.
{% tabs %}
@@ -72,12 +72,11 @@ namespace RadialSample
{% endtabs %}
+### Adding Nested Items to the Radial Menu
-### Adding nested items of radial menu
+You can populate nested items within a menu to group similar actions based on their results. For example, you can group clipboard operations by setting the clipboard as the main menu and cut, copy, and paste as its children.
-You can populate the nested levels of items within a menu to group similar actions based on their result. For example, you can group the clipboard operations by adding a clipboard as a main menu and cut, copy, and paste as its children.
-
-The following code snippet demonstrates how to add the nested items of radial menu.
+The following code snippet demonstrates how to add nested items to a radial menu.
{% tabs %}
diff --git a/Xamarin/Radial-Menu/Segmenting-And-Placing-Item.md b/Xamarin/Radial-Menu/Segmenting-And-Placing-Item.md
index 48c3ca5a1..291835e5c 100644
--- a/Xamarin/Radial-Menu/Segmenting-And-Placing-Item.md
+++ b/Xamarin/Radial-Menu/Segmenting-And-Placing-Item.md
@@ -1,24 +1,23 @@
---
layout: post
-title: Segmenting and Placing the Items in Xamarin Radial Menu | Syncfusion
-description: Learn here all about Segmenting and Placing the Items support in Syncfusion Xamarin Radial Menu (SfRadialMenu) control and more.
+title: Segmenting and Placing Items in Xamarin Radial Menu | Syncfusion
+description: Learn about segmenting and placing items support in the Syncfusion Xamarin Radial Menu (SfRadialMenu) control and more.
platform: Xamarin
control: SfRadialMenu
documentation: ug
---
-# Segmenting and Placing the Items in Xamarin Radial Menu (SfRadialMenu)
+# Segmenting and Placing Items in Xamarin Radial Menu (SfRadialMenu)
-There are two different layout types available for radial menu:
+The radial menu offers two different layout types:
+- [`Default`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.LayoutType.html#Syncfusion_SfRadialMenu_XForms_LayoutType_Default)
+- [`Custom`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.LayoutType.html#Syncfusion_SfRadialMenu_XForms_LayoutType_Custom)
-* [`Default`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.LayoutType.html#Syncfusion_SfRadialMenu_XForms_LayoutType_Default)
-* [`Custom`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.LayoutType.html#Syncfusion_SfRadialMenu_XForms_LayoutType_Custom)
+Both layout types divide the available space equally among all children in the circular panel.
-Both the layout types divide the available space equally among all the children in the circular panel.
+## Default Layout
-## Default
-
-Number of segments in the panel is determined by children count in the level. Hence, segment count in each hierarchical level differs, radial menu items are arranged in the sequential order as added in the radial menu.
+The number of segments in the panel is determined by the number of children at each level. As a result, the segment count in each hierarchical level varies, and radial menu items are arranged in the sequential order they are added to the radial menu.
{% tabs %}
{% highlight xaml %}
@@ -75,9 +74,9 @@ namespace RadialSample
{% endhighlight %}
{% endtabs %}
-## Custom
+## Custom Layout
-The number of segments in the panel is determined using the [`VisibleSegmentsCount`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_VisibleSegmentsCount) property. Since the segment count in all the hierarchical levels are same, radial menu items are arranged in any order based on the [`SegmentIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_SegmentIndex) property.
+The number of segments in the panel is determined using the [`VisibleSegmentsCount`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_VisibleSegmentsCount) property. Since the segment count is consistent across all hierarchical levels, radial menu items can be arranged in any order based on the [`SegmentIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_SegmentIndex) property.
{% tabs %}
@@ -138,19 +137,19 @@ namespace RadialSample
### VisibleSegmentsCount
-The [`VisibleSegmentsCount`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_VisibleSegmentsCount) property is used to specify the number of segments available in circular panel. When children count is greater than the value given in the [`VisibleSegmentsCount`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_VisibleSegmentsCount) property, the overflowing children are not arranged in the panel. When children count is lesser than the [`VisibleSegmentsCount`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_VisibleSegmentsCount) property, then remaining segments are left free.
+The [`VisibleSegmentsCount`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenu_VisibleSegmentsCount) property is used to specify the number of segments available in the circular panel. If the count of children exceeds the value given in the `VisibleSegmentsCount` property, the overflowing children are not arranged in the panel. If the count of children is less than `VisibleSegmentsCount`, the remaining segments are left unoccupied.
-
+
-If number of item count is higher than VisibleItemCount, excessive items will not be shown.
+If the number of item counts is higher than `VisibleItemCount`, excessive items will not be shown.

### SegmentIndex
-[`SegmentIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_SegmentIndex) property is used to specify the index of the radial menu item in circular panel. Based on the index, the radial menu items are inserted in the segment. When the [`SegmentIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_SegmentIndex) is not specified for a RadialMenuItem the menu item is arranged in the next available free segment.
+The [`SegmentIndex`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_SegmentIndex) property specifies the index of the radial menu item in the circular panel. Based on the index, radial menu items are inserted into segments. If the `SegmentIndex` is not specified for a `RadialMenuItem`, the menu item is arranged in the next available free segment.
-## Code snippet for VisibleSegmentCount and SegmentIndex
+## Code Snippet for VisibleSegmentCount and SegmentIndex
{% tabs %}
diff --git a/Xamarin/Radial-Menu/SfRadialMenuItem-Customization.md b/Xamarin/Radial-Menu/SfRadialMenuItem-Customization.md
index 8db60eb34..de4722231 100644
--- a/Xamarin/Radial-Menu/SfRadialMenuItem-Customization.md
+++ b/Xamarin/Radial-Menu/SfRadialMenuItem-Customization.md
@@ -1,19 +1,19 @@
---
layout: post
-title: SfRadialMenuItems Customization in Xamarin Radial Menu | Syncfusion
-description: Learn here all about SfRadialMenuItems Customization support in Syncfusion Xamarin Radial Menu (SfRadialMenu) control and more.
+title: Customization of SfRadialMenuItems in Xamarin Radial Menu | Syncfusion
+description: Explore the customization options for SfRadialMenuItems in the Syncfusion Xamarin Radial Menu (SfRadialMenu) control.
platform: Xamarin
control: SfRadialMenu
documentation: ug
---
-# SfRadialMenuItems Customization in Xamarin Radial Menu (SfRadialMenu)
+# Customization of SfRadialMenuItems in Xamarin Radial Menu (SfRadialMenu)
-The [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html) class provides various options to customize the items by giving `Custom Views`, `FontIcons`, and `Images`. You can add radial menu items by hierarchy. To add a [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html) with [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html), create an instance of [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html), and add it to the [`Items`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_ItemsProperty) property, which is available in [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html).
+The [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html) class offers diverse customization options through custom views, font icons, and images. You can add radial menu items hierarchically. To add a [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html) to [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html), instantiate the [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html) and include it in the [`Items`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_ItemsProperty) property within the [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html).
## Items
-The [`Items`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_ItemsProperty) property populates the items to the inner rim of [`SfRadialMenu`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenu.html) when tapping the items of outer rim.
+The [`Items`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_ItemsProperty) property allows items to populate the inner rim of the `SfRadialMenu` upon tapping items in the outer rim.
{% tabs %}
@@ -64,7 +64,7 @@ namespace RadialSample
## Text
-The [`Text`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_TextProperty) property provides text to the [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html).
+The [`Text`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_TextProperty) property assigns text to the [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html).
{% tabs %}
@@ -110,7 +110,7 @@ namespace RadialSample
## ItemHeight
-The [`ItemHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_ItemHeightProperty) changes the height of the [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html).
+The [`ItemHeight`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_ItemHeightProperty) property specifies the height of the [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html).
{% tabs %}
@@ -161,7 +161,7 @@ namespace RadialSample
## ItemWidth
-The [`ItemWidth`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_ItemWidthProperty) property changes the width of the [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html).
+The [`ItemWidth`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_ItemWidthProperty) property defines the width of the [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html).
{% tabs %}
@@ -263,7 +263,7 @@ namespace RadialSample
## FontFamily
-The [`FontFamily`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_FontFamilyProperty) property changes the font family of text in [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html).
+The [`FontFamily`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_FontFamilyProperty) property modifies the font family of text within the [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html).
{% tabs %}
@@ -314,7 +314,7 @@ namespace RadialSample
## FontSize
-The [`FontSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_FontSizeProperty) property changes the text size in the [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html).
+The [`FontSize`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_FontSizeProperty) property adjusts the text size within the [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html).
{% tabs %}
@@ -364,9 +364,9 @@ namespace RadialSample
{% endtabs %}
-## FontAttribute
+## FontAttributes
-The [`FontAttributes`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_FontAttributesProperty) property changes the font attributes of text in [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html).
+The [`FontAttributes`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_FontAttributesProperty) property applies font attributes to the text in [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html).
{% tabs %}
@@ -417,7 +417,7 @@ namespace RadialSample
## Image
-The [`Image`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_ImageProperty) property provides image to the [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html).
+The [`Image`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html#Syncfusion_SfRadialMenu_XForms_SfRadialMenuItem_ImageProperty) property assigns an image to the [`SfRadialMenuItem`](https://help.syncfusion.com/cr/xamarin/Syncfusion.SfRadialMenu.XForms.SfRadialMenuItem.html).
{% tabs %}