diff --git a/Xamarin-iOS/SfMaskedEdit/Getting-Started.md b/Xamarin-iOS/SfMaskedEdit/Getting-Started.md index 88f4d22b..d972f3a6 100644 --- a/Xamarin-iOS/SfMaskedEdit/Getting-Started.md +++ b/Xamarin-iOS/SfMaskedEdit/Getting-Started.md @@ -5,17 +5,16 @@ description: A quick tour to initial users on Syncfusion® SfMaskedEdit control platform: xamarin.ios control: SfMaskedEdit documentation: ug -documentation: ug keywords: mask, SfMaskedEdit, maskededit --- # Getting Started -This section explains you the steps required to configure a SfMaskedEdit control in a real-time scenario and provides a walk-through on some of the customization features available in `SfMaskedEdit` control. +This section explains the steps required to configure a SfMaskedEdit control in a real-time scenario and provides a walkthrough of some of the customization features available in `SfMaskedEdit` control. ## Reference Essential Studio® components in your solution -Syncfusion® Xamarin components are available in [nuget.org](https://www.nuget.org/). To add masked edit to your project, open the NuGet package manager in Visual Studio, and search for "[Syncfusion.Xamarin.SfMaskedEdit.IOS](https://www.nuget.org/packages/Syncfusion.Xamarin.SfMaskedEdit.IOS)", and then install it. +Syncfusion® Xamarin components are available in [nuget.org](https://www.nuget.org/). To add SfMaskedEdit to your project, open the NuGet package manager in Visual Studio, and search for "[Syncfusion.Xamarin.SfMaskedEdit.IOS](https://www.nuget.org/packages/Syncfusion.Xamarin.SfMaskedEdit.IOS)", and then install it. ![Xamarin.iOS Masked Edit NuGet](SfMaskedEditImages/nuget.png) @@ -81,9 +80,8 @@ maskedEdit.Mask = "00/00/0000"; {% endhighlight %} {% endtabs %} -This mask expression allows only numeric inputs in the places of 0. -Refer to this [link](MaskType) to know more about the Mask characters and Mask Types available in SfMaskedEdit control. -Run the project and check if you get the following output to make sure that you have configured your project properly to add `SfMaskedEdit`. +This mask expression allows only numeric inputs in the positions marked with 0. Refer to this [link](MaskType) to learn more about the Mask characters and Mask Types available in SfMaskedEdit control. +Run the project and verify that you get the following output to ensure that you have configured your project properly to add `SfMaskedEdit`. ![Xamarin.iOS Masked Edit](SfMaskedEditImages/maskinginput.png) diff --git a/Xamarin-iOS/SfMaskedEdit/Overview.md b/Xamarin-iOS/SfMaskedEdit/Overview.md index 54c876c8..d0bb275e 100644 --- a/Xamarin-iOS/SfMaskedEdit/Overview.md +++ b/Xamarin-iOS/SfMaskedEdit/Overview.md @@ -1,7 +1,7 @@ --- layout: post title: Overview of Syncfusion® SfMaskedEdit control for Xamarin.iOS -description: Overview and key features of SfMaskedEdit control +description: Explore Syncfusion® SfMaskedEdit control overview and key features for Xamarin.iOS including input validation, mask patterns, and customization options. platform: xamarin.ios control: SfMaskedEdit documentation: ug @@ -10,15 +10,15 @@ keywords: mask, SfMaskedEdit, maskededit # Overview -The Masked text box is an advanced version of the UITextField control that restricts user input to certain types of characters, text, and numbers using a mask pattern. This control is used to create a template for providing information such as telephone numbers, IP addresses, product IDs, and so on. +The SfMaskedEdit is an advanced version of the UITextField control that restricts user input to certain types of characters, text, and numbers using a mask pattern. This control is used to create a template for providing information such as telephone numbers, IP addresses, product IDs, and so on. -![](SfMaskedEditImages/Overview.png) +![SfMaskedEdit control with different input masks](SfMaskedEditImages/Overview.png) ## Key features * The input can be masked with a fixed or variable length by setting the `MaskType` to `Text` or `RegEx`, respectively. * Custom prompt characters can be set. -* Special symbols such as currency symbol, date separator, decimal separator, etc., can be localized based on the culture. +* Special symbols such as currency symbol, date separator, decimal separator, etc., can be localized based on culture. * Input validation can be done either during each key press or when the control loses its focus. * Values can be accessed with or without literal and prompt characters. * Clipboard operations can be used with or without literal and prompt characters. diff --git a/Xamarin-iOS/SfMaskedEdit/basic-features.md b/Xamarin-iOS/SfMaskedEdit/basic-features.md index 624d0d0a..3eede2b7 100644 --- a/Xamarin-iOS/SfMaskedEdit/basic-features.md +++ b/Xamarin-iOS/SfMaskedEdit/basic-features.md @@ -1,8 +1,8 @@ --- layout: post -title: Basic features in SfMaskedEdit for Xamarin.iOS platform -description: Learn how to customize the basic features of SfMaskedEdit -platform: Xamarin.iOS +title: Basic features in Syncfusion® SfMaskedEdit for Xamarin.iOS +description: Learn how to configure basic features of Syncfusion® SfMaskedEdit for Xamarin.iOS including value setting, prompt characters, and placeholder customization. +platform: xamarin.ios control: SfMaskedEdit documentation: ug keywords: mask, SfMaskedEdit, maskededit @@ -22,11 +22,11 @@ maskedEdit.Value = @"14/11/2014"; {% endhighlight %} {% endtabs %} -![](SfMaskedEditImages/settingValue.png) +![SfMaskedEdit setting value](SfMaskedEditImages/settingValue.png) ## Setting Prompt Character -Displays prompt character for the absence of your input in Mask and its default value is ‘_’. You can set the custom prompt character using `PromptChar` property. +The prompt character is displayed for the absence of your input in the mask, and its default value is '_'. You can set a custom prompt character using the `PromptChar` property. {% tabs %} {% highlight c# %} @@ -36,13 +36,11 @@ maskedEdit.PromptChar = '*'; {% endhighlight %} {% endtabs %} -![](SfMaskedEditImages/settingPrompt.png) +![SfMaskedEdit setting prompt character](SfMaskedEditImages/settingPrompt.png) ## Setting Placeholder -The placeholder will prompt you with instructions or important information when it is not on focus and any valid characters are not entered. -The placeholder text and its appearance can be modified using `Placeholder` and `AttributedPlaceholder` properties respectively. - +The placeholder will prompt you with instructions or important information when the control is not in focus and no valid characters are entered. The placeholder text and its appearance can be modified using the `Placeholder` and `AttributedPlaceholder` properties respectively. {% tabs %} {% highlight c# %} SfMaskedEdit maskedEdit = new SfMaskedEdit(); @@ -65,6 +63,6 @@ maskedEdit.AttributedPlaceholder = new NSAttributedString(maskedEdit.Placeholder {% endhighlight %} {% endtabs %} -![](SfMaskedEditImages/Settingplaceholder.png) +![SfMaskedEdit setting placeholder](SfMaskedEditImages/Settingplaceholder.png) You can find the complete basic features sample from this [link](http://files2.syncfusion.com/Xamarin.iOS/Samples/MaskedEdit_BasicFeatures.zip). diff --git a/Xamarin-iOS/SfMaskedEdit/events.md b/Xamarin-iOS/SfMaskedEdit/events.md index b330fa85..b159df67 100644 --- a/Xamarin-iOS/SfMaskedEdit/events.md +++ b/Xamarin-iOS/SfMaskedEdit/events.md @@ -1,8 +1,8 @@ --- layout: post -title: Eevnts in SfMaskedEdit for Xamarin.iOS platform -description: Learn how to get the value changed and Mask input reject events in SfMaskedEdit -platform: Xamarin.iOS +title: Events in Syncfusion® SfMaskedEdit for Xamarin.iOS +description: Learn how to handle ValueChanged and MaskInputRejected events in Syncfusion® SfMaskedEdit for Xamarin.iOS with event arguments and validation handling. +platform: xamarin.ios control: SfMaskedEdit documentation: ug keywords: mask, SfMaskedEdit, maskededit @@ -17,12 +17,12 @@ The SfMaskedEdit exposes the following events: ## ValueChanged event -Occurs when the value of the `Value` property is changed by either entering the valid input character or setting the value to the `Value` property through C# code. The event arguments are of type ValueChangedEventArgs and expose the following property: +Occurs when the value of the `Value` property is changed by either entering a valid input character or setting the value to the `Value` property through C# code. The event arguments are of type ValueChangedEventArgs and expose the following property: -* `Value`: The read only property contains the updated value of the `Value` property of SfMaskedEdit. +* `Value`: This read-only property contains the updated value of the `Value` property of SfMaskedEdit. -> Your valid input character is updated to `Value` property based on the `ValidationMode` property. ->Refer to this [link](Validation#validation-mode) to know more about the `ValidationMode` property of `SfMaskedEdit` control. +> Valid input characters are updated to the `Value` property based on the `ValidationMode` property. +>Refer to this [link](Validation#validation-mode) to learn more about the `ValidationMode` property of `SfMaskedEdit` control. {% tabs %} {% highlight c# %} @@ -57,12 +57,12 @@ private void MaskedEdit_OnValueChanged(object sender, ValueChangedEventArgs e) {% endhighlight %} {% endtabs %} -![](SfMaskedEditImages/valuechanged.png) +![SfMaskedEdit ValueChanged event example](SfMaskedEditImages/valuechanged.png) ## MaskInputRejected event -Occurs when your input or assigned character does not match the corresponding format element of the input mask. The event arguments are type of MaskInputRejectedEventArgs and expose the following properties: +Occurs when the input or assigned character does not match the corresponding format element of the input mask. The event arguments are of type MaskInputRejectedEventArgs and expose the following properties: * `Position`: The position in the mask corresponding to the invalid input character. * `RejectionHint`: The enumerated value that describes why the input character was rejected. @@ -98,6 +98,6 @@ private void MaskedEdit_MaskInputRejected(object sender, MaskInputRejectedEventA {% endhighlight %} {% endtabs %} -![](SfMaskedEditImages/maskrejected.png) +![SfMaskedEdit MaskInputRejected event example](SfMaskedEditImages/maskrejected.png) This demo can be downloaded from this [link](http://files2.syncfusion.com/Xamarin.iOS/Samples/MaskedEdit_Events.zip). diff --git a/Xamarin-iOS/SfMaskedEdit/formatting-clipboard-text.md b/Xamarin-iOS/SfMaskedEdit/formatting-clipboard-text.md index 98960f9b..d1a84eb9 100644 --- a/Xamarin-iOS/SfMaskedEdit/formatting-clipboard-text.md +++ b/Xamarin-iOS/SfMaskedEdit/formatting-clipboard-text.md @@ -1,8 +1,8 @@ --- layout: post -title: Formatting clipboard text of SfMaskedEit in Xamarin.iOS plarform -description: Learn how to format the clipboard text during cut and copy operation of SfMaskedEdit control -platform: Xamarin.iOS +title: Formatting clipboard text of Syncfusion® SfMaskedEdit Xamarin.iOS +description: Learn how to configure clipboard text formatting during cut and copy operations in Syncfusion® SfMaskedEdit for Xamarin.iOS using CutCopyMaskFormat property. +platform: xamarin.ios control: SfMaskedEdit documentation: ug keywords: mask, SfMaskedEdit, maskededit @@ -10,7 +10,7 @@ keywords: mask, SfMaskedEdit, maskededit # Formatting clipboard text -SfMaskedEdit allows you to format the clipboard text in a mask scenario (when the Mask property is set). When you perform the cut or copy operation, the clipboard text will be formatted with your input characters and the literals defined in the mask. You can modify this and allow the clipboard to hold the characters with or without prompt and literals by setting the CutCopyMaskFormat property of the control. The clipboard text is formatted by any one of the following formatting enum values: +SfMaskedEdit allows you to format the clipboard text in a mask scenario (when the Mask property is set). When you perform cut or copy operations, the clipboard text will be formatted with your input characters and the literals defined in the mask. You can modify this behavior and configure the clipboard to hold characters with or without prompt and literals by setting the CutCopyMaskFormat property. The clipboard text can be formatted using any of the following enum values: * ExcludePromptAndLiterals * IncludePrompt diff --git a/Xamarin-iOS/SfMaskedEdit/formatting-value.md b/Xamarin-iOS/SfMaskedEdit/formatting-value.md index c0558cc4..1d1827cf 100644 --- a/Xamarin-iOS/SfMaskedEdit/formatting-value.md +++ b/Xamarin-iOS/SfMaskedEdit/formatting-value.md @@ -1,8 +1,8 @@ --- layout: post -title: Formatting value of Value property of SfMaskedEdit control for Xamarin.iOS platform -description: Learn how to format the characters in the Value property of SfMaskedEdit control -platform: Xamarin.iOS +title: Formatting Value property of Syncfusion® SfMaskedEdit Xamarin.iOS +description: Learn how to configure Value property formatting in Syncfusion® SfMaskedEdit for Xamarin.iOS using ValueMaskFormat with prompt and literal options. +platform: xamarin.ios control: SfMaskedEdit documentation: ug keywords: mask, SfMaskedEdit, maskededit @@ -10,7 +10,7 @@ keywords: mask, SfMaskedEdit, maskededit # Formatting Value -SfMaskedEdit allows you to format the characters in the `Value` property in a mask scenario (when the Mask property is set). By default, the Value property holds your input characters, prompt characters and the literals defined in the mask. You can modify this and allow the Value property to hold the characters without prompt and literals by setting the ValueMaskFormat property of the control. The Value in the SfMaskedEdit is formatted by any one of the following formatting enum values: +SfMaskedEdit allows you to format the characters in the `Value` property in a mask scenario (when the Mask property is set). By default, the Value property holds your input characters, prompt characters, and the literals defined in the mask. You can modify this behavior and configure the Value property to hold characters without prompt and literals by setting the ValueMaskFormat property. The Value in SfMaskedEdit can be formatted using any of the following enum values: * ExcludePromptAndLiterals * IncludePrompt @@ -91,8 +91,8 @@ private void MaskedEdit1_ValueChanged(object sender, ValueChangedEventArgs e) {% endhighlight %} {% endtabs %} -Refer this [link](Events#valuechanged-event) to know more about the `ValueChanged` event of SfMaskedEdit control. +Refer to this [link](Events#valuechanged-event) to learn more about the `ValueChanged` event of SfMaskedEdit control. -![](SfMaskedEditImages/valueformat.png) +![SfMaskedEdit Value formatting examples with different mask formats](SfMaskedEditImages/valueformat.png) This demo can be downloaded from this [link](http://files2.syncfusion.com/Xamarin.iOS/Samples/MaskedEdit_FormattingValue.zip). diff --git a/Xamarin-iOS/SfMaskedEdit/hiding-prompt-characters.md b/Xamarin-iOS/SfMaskedEdit/hiding-prompt-characters.md index a851dda8..731d5c6b 100644 --- a/Xamarin-iOS/SfMaskedEdit/hiding-prompt-characters.md +++ b/Xamarin-iOS/SfMaskedEdit/hiding-prompt-characters.md @@ -1,8 +1,8 @@ --- layout: post -title: Hiding propmpt characters of SfMaskedEdit control for Xamarin.iOS paltform -description: Learn how to hide the prompt characters of SfMasedEdit while control loses focus -platform: Xamarin.iOS +title: Hiding prompt characters of Syncfusion® SfMaskedEdit Xamarin.iOS +description: Learn how to hide prompt characters in Syncfusion® SfMaskedEdit for Xamarin.iOS using HidePromptOnLeave property when control loses focus. +platform: xamarin.ios control: SfMaskedEdit documentation: ug keywords: mask, SfMaskedEdit, maskededit @@ -10,7 +10,7 @@ keywords: mask, SfMaskedEdit, maskededit # Hiding Prompt Characters -When the `HidePromptOnLeave` property is set to true, prompt characters are ignored when control loses focus. Again, the prompt characters are restored when the control is focused. +When the `HidePromptOnLeave` property is set to true, prompt characters are hidden when the control loses focus. The prompt characters are restored when the control regains focus. {% tabs %} {% highlight c# %} @@ -21,6 +21,6 @@ maskedEdit.HidePromptOnLeave = true; {% endhighlight %} {% endtabs %} -![](SfMaskedEditImages/Hideprompt.png) +![SfMaskedEdit hiding prompt characters when control loses focus](SfMaskedEditImages/Hideprompt.png) This demo can be downloaded from this [link](http://files2.syncfusion.com/Xamarin.iOS/Samples/MaskedEdit_HidingPrompt.zip). diff --git a/Xamarin-iOS/SfMaskedEdit/localization.md b/Xamarin-iOS/SfMaskedEdit/localization.md index 612c2b27..22aedf43 100644 --- a/Xamarin-iOS/SfMaskedEdit/localization.md +++ b/Xamarin-iOS/SfMaskedEdit/localization.md @@ -1,7 +1,7 @@ --- layout: post -title: Localization with Syncfusion® SfMaskedEdit control for Xamarin.iOS platform -description: Learn how to localize the special symbols such as currency symbol, date separator, decimal separator etc., in SfMaskedEdit control for Xamarin.iOS platform +title: Localization with Syncfusion® SfMaskedEdit for Xamarin.iOS +description: Learn how to localize special symbols such as currency symbol, date separator, decimal separator, etc., in SfMaskedEdit control for Xamarin.iOS platform platform: xamarin.ios control: SfMaskedEdit documentation: ug @@ -10,7 +10,7 @@ keywords: mask, SfMaskedEdit, maskededit # Localization -The special symbols such as currency symbol, date separator, decimal separator etc., can be localized to any specific culture using the **Culture** property. +Special symbols such as currency symbol, date separator, decimal separator, etc., can be localized to any specific culture using the **Culture** property. @@ -71,8 +71,8 @@ maskedEdit.Culture = new CultureInfo("fr-FR"); {% endhighlight %} {% endtabs %} -Now the ‘$’ will be localized to ‘€’;‘.’ will be localized to ‘,’ and ‘,’ will be localized to ‘ ‘(single white space). +Now the '$' will be localized to '€', '.' will be localized to ',', and ',' will be localized to ' ' (single white space). -![](SfMaskedEditImages/Localisation.png) +![SfMaskedEdit localization example showing French culture formatting](SfMaskedEditImages/Localisation.png) You can find the runnable localization sample from this [link](http://files2.syncfusion.com/Xamarin.iOS/Samples/MaskedEdit_Localization.zip). diff --git a/Xamarin-iOS/SfMaskedEdit/masktype.md b/Xamarin-iOS/SfMaskedEdit/masktype.md index 5a3eebdc..f35dd4e1 100644 --- a/Xamarin-iOS/SfMaskedEdit/masktype.md +++ b/Xamarin-iOS/SfMaskedEdit/masktype.md @@ -1,7 +1,7 @@ --- layout: post -title: Getting Started with Syncfusion® SfMaskedEdit control for Xamarin.IOS -description: A quick tour to initial users on Syncfusion® SfMaskedEdit control for Xamarin.IOS platform +title: Getting Started with Syncfusion® SfMaskedEdit control for Xamarin.iOS +description: Learn about mask types (Text and RegEx) in Syncfusion® SfMaskedEdit for Xamarin.iOS including fixed-length and variable-length input patterns. platform: xamarin.ios control: SfMaskedEdit documentation: ug @@ -9,14 +9,14 @@ documentation: ug # MaskType -Each MaskType has different set of mask characters that are combined to form a mask expression. Based on the complexity and usage, mask types are classified as: +Each MaskType has a different set of mask characters that are combined to form a mask expression. Based on the complexity and usage, mask types are classified as: * Text * RegEx ## Text -The expressions that are generated with letters, digits, and special characters come under this group. This is mainly used for fixed length inputs. For example: phone number, zip code, and so on. +Expressions generated with letters, digits, and special characters fall under this category. This is primarily used for fixed-length inputs, such as phone numbers, zip codes, and similar data. ### Text Mask characters @@ -66,7 +66,7 @@ Letter, optional. Restricts input to the ASCII letters a-z and A-Z. 0 @@ -106,7 +106,7 @@ Escapes a mask character, turning it into a literal. "\" is the escape sequence Any other characters
-Digit, required. This character accepts any single digit between 0 and 9 +Digit, required. This character accepts any single digit between 0 and 9.
-Considered as literals. Literals always occupy a static position in the mask at run time, and cannot be moved or deleted. +Treated as literals. Literals always occupy a static position in the mask at run time, and cannot be moved or deleted.
@@ -119,18 +119,16 @@ maskedEdit.Mask = "+1(000)000000"; {% endhighlight %} {% endtabs %} -This mask expression allows only numeric inputs in the places of 0. +This mask expression allows only numeric inputs in positions marked with 0. ## Regex -The expressions that are generated with regular expressions come under this group, preferable for variable length inputs and input in range. For example: hexadecimal values [0-9A-C]. -The regular expressions provide significant advantages when creating masks as compared with other mask modes. - +Expressions generated with regular expressions fall under this category, which is preferable for variable-length inputs and inputs within a specific range. For example: hexadecimal values [0-9A-C]. Regular expressions provide significant advantages when creating masks compared to other mask modes. **Advantages** -* Allows you to enter the value of indeterminate length. -* Restricts with specific pattern. Example email, password, and more. -* Restricts you to enter specific range at specific position. +* Allows you to enter values of variable length. +* Restricts input to specific patterns, such as email addresses, passwords, and more. +* Restricts input to a specific range at a specific position. ### Regex Mask Characters @@ -164,7 +162,7 @@ Accepts any digit. {n} -Accepts the input for ‘n’ number of times. +Accepts the input for 'n' number of times. @@ -172,7 +170,7 @@ Accepts the input for ‘n’ number of times. {n,m} -Accepts the input for ‘n’ minimum number of times and ‘m’ maximum number of times. +Accepts the input for 'n' minimum number of times and 'm' maximum number of times. @@ -212,7 +210,7 @@ Accepts any single character included in the specified set of characters. [0-9a-fA-F] -Accepts any character between[A-F]/[a-f] and numbers between [0-9]. +Accepts any character between [A-F]/[a-f] and numbers between [0-9]. @@ -225,8 +223,8 @@ maskedEdit.Mask = @"+1(\d{3})\d{6}"; {% endhighlight %} {% endtabs %} -This mask expression ’\d{3}’ and ’\d{6}’ allows only numeric, where {n} is the count that the input should be accepted. +This mask expression '\d{3}' and '\d{6}' allows only numeric, where {n} is the count that the input should be accepted. -![](SfMaskedEditImages/masktype.png) +![SfMaskedEdit showing Text and RegEx mask type examples](SfMaskedEditImages/masktype.png) You can find the complete mask type sample from this [link](http://www.syncfusion.com/downloads/support/directtrac/general/ze/MaskType769706503.zip). diff --git a/Xamarin-iOS/SfMaskedEdit/using-mask-characters-as-literals.md b/Xamarin-iOS/SfMaskedEdit/using-mask-characters-as-literals.md index 031cab22..c2f37ce4 100644 --- a/Xamarin-iOS/SfMaskedEdit/using-mask-characters-as-literals.md +++ b/Xamarin-iOS/SfMaskedEdit/using-mask-characters-as-literals.md @@ -1,8 +1,8 @@ --- layout: post -title: Using Mask Characters as Literals in SfMaskedEdit control for Xamarin.iOS platform -description: Learn how to use mask characters as literals in SfMaskedEdit control for Xamarin.iOS platform -platform: Xamarin.iOS +title: Using Mask Characters as Literals in Syncfusion® SfMaskedEdit +description: Learn how to use mask characters as literals in Syncfusion® SfMaskedEdit for Xamarin.iOS by escaping them with backslash for special character display. +platform: xamarin.ios control: SfMaskedEdit documentation: ug keywords: mask, SfMaskedEdit, maskededit @@ -10,7 +10,7 @@ keywords: mask, SfMaskedEdit, maskededit # Using Mask Characters as Literals -To use mask character as a literal, precede the mask character with a backslash (\\). For example, to display the dollar sign ($), then set the mask as follows: +To use a mask character as a literal, precede the mask character with a backslash (\). For example, to display the dollar sign ($), set the mask as follows: {% tabs %} {% highlight c# %} @@ -22,6 +22,6 @@ maskedEdit.Mask = @"\$ 0000"; This will produce a mask that displays a dollar sign ($) followed by the prompt characters for entering numbers. -![](SfMaskedEditImages/maskasliteral.png) +![Dollar sign with number input](SfMaskedEditImages/maskasliteral.png) This demo can be downloaded from this [link](http://files2.syncfusion.com/Xamarin.iOS/Samples/MaskedEdit_UsingMaskCharactersAsLiterals.zip). diff --git a/Xamarin-iOS/SfMaskedEdit/validation.md b/Xamarin-iOS/SfMaskedEdit/validation.md index ddd106ca..f741ac3d 100644 --- a/Xamarin-iOS/SfMaskedEdit/validation.md +++ b/Xamarin-iOS/SfMaskedEdit/validation.md @@ -1,8 +1,8 @@ --- layout: post -title: Input validation in SfMaskedEdit control for Xamarin.iOS platform -description: Learn how and when to validate the input characters with the given Mask of SfMaskedEdit control. -platform: Xamarin.iOS +title: Input validation in Syncfusion® SfMaskedEdit for Xamarin.iOS +description: Discover input validation modes (KeyPress, LostFocus) and error checking in Syncfusion® SfMaskedEdit control for Xamarin.iOS platform with HasError property. +platform: xamarin.ios control: SfMaskedEdit documentation: ug keywords: mask, SfMaskedEdit, maskededit @@ -28,11 +28,11 @@ maskedEdit.ValidationMode = InputValidationMode.KeyPress; {% endhighlight %} {% endtabs %} -When the ValidationMode is LostFocus, the validation takes place when the control lost its focus. For KeyPress, the validation triggers for each key press. +When the ValidationMode is LostFocus, the validation takes place when the control loses its focus. For KeyPress, the validation triggers for each key press. ## HasError -This read only property is used to check whether the validation succeeds or not. It returns true once validation succeeds or else returns false. The following code example shows the usage of `HasError` property. +This read-only property is used to check whether the validation succeeds. It returns true when validation succeeds, otherwise it returns false. The following code example shows the usage of `HasError` property. {% tabs %} {% highlight c# %} @@ -58,8 +58,8 @@ private void MaskedEdit_ValueChanged(object sender, ValueChangedEventArgs e) {% endhighlight %} {% endtabs %} -Refer this [link](Events#valuechanged-event) to know more about the `ValueChanged` event of SfMaskedEdit control. +Refer to this [link](Events#valuechanged-event) to learn more about the `ValueChanged` event of SfMaskedEdit control. -![](SfMaskedEditImages/validation.png) +![Validation error alert dialog](SfMaskedEditImages/validation.png) This demo can be downloaded from this [link](http://files2.syncfusion.com/Xamarin.iOS/Samples/MaskedEdit_Validation.zip). \ No newline at end of file diff --git a/Xamarin-iOS/SfMaskedEdit/visual-customization.md b/Xamarin-iOS/SfMaskedEdit/visual-customization.md index 53241e5c..7ec48a06 100644 --- a/Xamarin-iOS/SfMaskedEdit/visual-customization.md +++ b/Xamarin-iOS/SfMaskedEdit/visual-customization.md @@ -1,8 +1,8 @@ --- layout: post -title: Visual appearence customization of SfMaskedEdit control for Xamarin.iOS Platform -description: Learn how to customize the visual appearence of SfMaskedEdit control -platform: Xamarin.iOS +title: Visual customization of Syncfusion® SfMaskedEdit for Xamarin.iOS +description: Learn how to customize SfMaskedEdit appearance including border colors, text styling, fonts, and alignment for Xamarin.iOS applications +platform: xamarin.ios control: SfMaskedEdit documentation: ug keywords: mask, SfMaskedEdit, maskededit @@ -26,14 +26,14 @@ maskedEdit.Layer.BorderColor = UIColor.Green.CGColor; {% endhighlight %} {% endtabs %} -![](SfMaskedEditImages/bordercolor.png) +![Green border color input field](SfMaskedEditImages/bordercolor.png) ## ErrorBorderColor -Sets the custom error border color to SfMaskedEdit. Error border color indicates the color to be used when the validation fails for your input with respect to the mask used. +Sets the custom error border color to SfMaskedEdit. Error border color specifies the color to be used when validation fails for input that doesn't match the specified mask. > Validation triggers based on `ValidationMode` property. ->Refer this [link](Validation#validation-mode) to know more about the `ValidationMode` property of `SfMaskedEdit` control. +>Refer to this [link](Validation#validation-mode) to learn more about the `ValidationMode` property of `SfMaskedEdit` control. {% tabs %} {% highlight c# %} @@ -44,7 +44,7 @@ maskedEdit.ErrorBorderColor = UIColor.Yellow; {% endhighlight %} {% endtabs %} -![](SfMaskedEditImages/errorborder.png) +![Yellow error border input field](SfMaskedEditImages/errorborder.png) ## Setting Appearance of Text @@ -71,6 +71,6 @@ maskedEdit.Font = UIFont.FromName("Arial", 20); {% endhighlight %} {% endtabs %} -![](SfMaskedEditImages/textappearance.png) +![Styled text input field](SfMaskedEditImages/textappearance.png) This demo can be downloaded from this [link](http://files2.syncfusion.com/Xamarin.iOS/Samples/MaskedEdit_VisualCustomize.zip). diff --git a/Xamarin-iOS/SfNumericTextBox/Assign-Nullable-Value.md b/Xamarin-iOS/SfNumericTextBox/Assign-Nullable-Value.md index 8c7b7edc..c62cc88b 100644 --- a/Xamarin-iOS/SfNumericTextBox/Assign-Nullable-Value.md +++ b/Xamarin-iOS/SfNumericTextBox/Assign-Nullable-Value.md @@ -1,6 +1,6 @@ --- layout: post -title: Various features in Syncfusion® Numeric TextBox control for Xamarin.iOS +title: Nullable values in Syncfusion® NumericTextBox for Xamarin.iOS description: Learn how to decide maximum decimal digits to be displayed and nullable value support in Numeric TextBox. platform: xamarin.ios control: SfNumericTextBox @@ -8,7 +8,7 @@ documentation: ug --- # Assign Nullable Value -The null values can be set in SfNumericTextBox `Value` property, by setting `AllowNull` property value to true. +Null values can be set in the SfNumericTextBox `Value` property by setting the `AllowNull` property value to true. N> By default, the property value is false. @@ -25,7 +25,7 @@ numericTextBox.AllowNull = true; ## Set Hint Text -The `WaterMark` property can be used to provide a hint that helps the user to get started with their input. The watermark text is visible when value is empty or null. +The `WaterMark` property can be used to provide a hint that helps the user get started with their input. The watermark text is visible when the value is empty or null. {% highlight c# %} diff --git a/Xamarin-iOS/SfNumericTextBox/Colors.md b/Xamarin-iOS/SfNumericTextBox/Colors.md index 6e90db53..aa10da5d 100644 --- a/Xamarin-iOS/SfNumericTextBox/Colors.md +++ b/Xamarin-iOS/SfNumericTextBox/Colors.md @@ -1,22 +1,22 @@ --- layout: post title: Colors in Syncfusion® SfNumericTextBox control for Xamarin.iOS -description: Learn what are the color properties to customize the appearence of SfNumericTextBox in Xamarin.iOS platform. +description: Learn what are the color properties to customize the appearance of SfNumericTextBox in Xamarin.iOS platform. platform: xamarin.ios control: SfNumericTextBox documentation: ug --- # Color Customization in SfNumericTextBox -SfNumericTextBox is used to set custom background, text, and border colors through the following properties: +SfNumericTextBox allows you to set custom background, text, and border colors through the following properties: -* `TextColor` - Sets the color of numeric textBox's value +* `TextColor` - Sets the color of the numeric textbox's value. -* `BackgroundColor` - Sets the background color of numeric textBox. +* `BackgroundColor` - Sets the background color of the numeric textbox. -* `BorderColor` - Sets the border custom color of numeric textBox +* `BorderColor` - Sets the border color of the numeric textbox. -* `WatermarkColor` - Sets the watermark custom color of numeric textBox's watermark Text. +* `WatermarkColor` - Sets the watermark color of the numeric textbox's watermark text. ## TextColor @@ -56,7 +56,7 @@ SfNumericTextBox numericTextBox = new SfNumericTextBox() ## BorderColor -The following code sample demonstrates how to set the BorderColor color: +The following code sample demonstrates how to set the BorderColor: {% highlight c# %} diff --git a/Xamarin-iOS/SfNumericTextBox/Decimal-Digits.md b/Xamarin-iOS/SfNumericTextBox/Decimal-Digits.md index 4da42d50..22a9ee06 100644 --- a/Xamarin-iOS/SfNumericTextBox/Decimal-Digits.md +++ b/Xamarin-iOS/SfNumericTextBox/Decimal-Digits.md @@ -1,6 +1,6 @@ --- layout: post -title: Various features in Syncfusion® Numeric TextBox control for Xamarin.iOS +title: Decimal digits in Syncfusion® NumericTextBox for Xamarin.iOS description: Learn how to decide maximum decimal digits and default decimal digits to be displayed and nullable value support in Numeric TextBox. platform: xamarin.ios control: SfNumericTextBox @@ -10,7 +10,7 @@ documentation: ug The maximum number of digits to be displayed after the decimal point can be specified by using the [`MaximumNumberDecimalDigits`](https://help.syncfusion.com/cr/xamarin-ios/Syncfusion.SfNumericTextBox.iOS.SfNumericTextBox_1.html#Syncfusion_SfNumericTextBox_iOS_SfNumericTextBox_MaximumNumberDecimalDigits) property. -N> The `MaximumNumberDecimalDigits` property can be provided with positive value only. +N> The `MaximumNumberDecimalDigits` property can be provided with positive values only. {% highlight c# %} diff --git a/Xamarin-iOS/SfNumericTextBox/Events-and-Interactivity.md b/Xamarin-iOS/SfNumericTextBox/Events-and-Interactivity.md index 4235370e..77954c6e 100644 --- a/Xamarin-iOS/SfNumericTextBox/Events-and-Interactivity.md +++ b/Xamarin-iOS/SfNumericTextBox/Events-and-Interactivity.md @@ -1,6 +1,6 @@ --- layout: post -title: Events and Interactivity in Syncfusion® Numeric TextBox for Xamarin.iOS +title: Events in Syncfusion® NumericTextBox for Xamarin.iOS description: Learn how to get the value changed event and some interactivity for SfNumericTextBox in Xamarin.iOS platform. platform: xamarin.ios control: SfNumericTextBox @@ -14,7 +14,7 @@ documentation: ug You can perform any operation when changing the value of SfNumericTextBox using the ValueChanged event. The ValueChanged event returns the changed value in SfNumericTextBox. -For example you can restrict the SfNumericTextBox value if it exceed's greater than 3 digits using following code. +For example, you can restrict the SfNumericTextBox value if it exceeds greater than 3 digits using the following code: {% highlight c# %} @@ -36,9 +36,9 @@ this.Add(numericTextBox); {% endhighlight %} -## Interactivity : ValueChangeMode +## Interactivity: ValueChangeMode -The ValueChangeMode property is used to mention when value needs to update, either in key pressed or focus lost state. When ValueChangeMode is set to OnKeyFocus, the value will be updated on each key press. When ValueChangeMode is set to OnLostFocus, the value is updated when the control lose the focus or the focus is moved to the next control. ValueChangeMode includes the following options: +The ValueChangeMode property is used to specify when the value needs to update, either in key pressed or focus lost state. When ValueChangeMode is set to OnKeyFocus, the value will be updated on each key press. When ValueChangeMode is set to OnLostFocus, the value is updated when the control loses focus or the focus is moved to the next control. ValueChangeMode includes the following options: 1. OnKeyFocus 2. OnLostFocus diff --git a/Xamarin-iOS/SfNumericTextBox/Getting-Started.md b/Xamarin-iOS/SfNumericTextBox/Getting-Started.md index 1e5478b1..9f0de1eb 100644 --- a/Xamarin-iOS/SfNumericTextBox/Getting-Started.md +++ b/Xamarin-iOS/SfNumericTextBox/Getting-Started.md @@ -9,7 +9,7 @@ documentation: ug # Getting Started with Xamarin.iOS SfNumericTextBox -This section explains you the steps to configure a numeric textbox control in a real-time scenario and also provides a walk-through on some of the customization features available in numeric textbox control. +This section explains the steps to configure a numeric textbox control in a real-time scenario and also provides a walk-through on some of the customization features available in the numeric textbox control. ## Reference Essential Studio® Components in your Solution @@ -17,15 +17,15 @@ After installing Essential Studio® for Xamarin, you can find all the {Syncfusion Installed location}\Essential Studio{version number}\lib -N> Assemblies are available in unzipped package location in Mac +N> Assemblies are available in unzipped package location in Mac. -and below assembly reference to the iOS unified project. +Add the following assembly reference to the iOS unified project: iOS-unifed\Syncfusion.SfNumericTextBox.iOS.dll ## Add SfNumericTextBox -* Adding namespace for the added assemblies. +* Add the namespace for the added assemblies: {% capture codesnippet1 %} @@ -64,7 +64,7 @@ this.Add(numericTextBox); ## Enable Parsing Mode -SfNumericTextBox provides option to display the value in double or decimal. Following code shows the Decimal parsing mode which can be set through `ParserMode` property. +SfNumericTextBox provides an option to display the value in double or decimal. The following code shows the Decimal parsing mode which can be set through the `ParserMode` property: {% highlight c# %} @@ -76,7 +76,7 @@ numericTextBox.ParserMode = SFNumericTextBoxParsers.Decimal; ## Configuring properties -Format string, value and maximum number of decimal digits can be customized in SfNumericTextBox as below. +Format string, value, and maximum number of decimal digits can be customized in SfNumericTextBox as shown below: {% highlight c# %} diff --git a/Xamarin-iOS/SfNumericTextBox/Localization.md b/Xamarin-iOS/SfNumericTextBox/Localization.md index 4af8ac86..a27e2ea5 100644 --- a/Xamarin-iOS/SfNumericTextBox/Localization.md +++ b/Xamarin-iOS/SfNumericTextBox/Localization.md @@ -8,9 +8,9 @@ documentation: ug --- # Localization in SfNumericTextBox -The SfNumericTextBox value can be localized to any specific culture. It can be specified by setting the `CultureInfo` property with `NSLocale` object instance. +The SfNumericTextBox value can be localized to any specific culture. It can be specified by setting the `CultureInfo` property with an `NSLocale` object instance. -N> Default `CultureInfo` property value is en-US. +N> The default `CultureInfo` property value is en-US. {% highlight c# %} diff --git a/Xamarin-iOS/SfNumericTextBox/Number-Formatting.md b/Xamarin-iOS/SfNumericTextBox/Number-Formatting.md index cf15cf89..00bffc8e 100644 --- a/Xamarin-iOS/SfNumericTextBox/Number-Formatting.md +++ b/Xamarin-iOS/SfNumericTextBox/Number-Formatting.md @@ -8,13 +8,13 @@ documentation: ug # Number Formatting in SfNumericTextBox -The values of the SfNumericTextBox can be configured to display different formats like currency format, percent format etc. +The values of the SfNumericTextBox can be configured to display different formats like currency format, percent format, etc. ## Format String The `FormatString` property determines the format specifier by which the display text has to be formatted. -N> The control displays the formatted text on lost focus. Default Value of `FormatString` is "n". +N> The control displays the formatted text on lost focus. The default value of `FormatString` is "n". ### Display Currency Notation @@ -30,7 +30,7 @@ numericTextBox.FormatString = "c"; ### Display Number Notation -`n` – Display the value in number format. +`n` – Displays the value in number format. {% highlight c# %} @@ -42,7 +42,7 @@ numericTextBox.FormatString = "n"; ### Display Percentage Notation -`p` – Display the value in percentage. +`p` – Displays the value in percentage. {% highlight c# %} @@ -52,15 +52,15 @@ numericTextBox.FormatString = "p"; {% endhighlight %} -N> Instead of using above `FormatString` types, we can provide any symbol or value as string in `FormatString` property which will be appended with the value in SfNumericTextBox. +N> Instead of using the above `FormatString` types, you can provide any symbol or value as a string in the `FormatString` property which will be appended with the value in SfNumericTextBox. ![Display the SfNumericTextBox with FormatString](images/FormatString.png) ## Parser Input Value -The value of the SfNumericTextBox can be parsed based on the `ParserMode ` property. +The value of the SfNumericTextBox can be parsed based on the `ParserMode` property. -N> The `ParserMode` is of type Parsers containing enum values of Double and Decimal. The default Value for `ParserMode` is Double. +N> The `ParserMode` is of type Parsers containing enum values of Double and Decimal. The default value for `ParserMode` is Double. {% highlight c# %} @@ -116,9 +116,7 @@ numericTextBox.PercentDisplayMode = SFNumerictextBoxPercentDisplayMode.Compute; ## Group separator modes -[`GroupSeparatorMode`](https://help.syncfusion.com/cr/xamarin-ios/Syncfusion.SfNumericTextBox.iOS.SfNumericTextBox_1.html#Syncfusion_SfNumericTextBox_iOS_SfNumericTextBox_GroupSeparatorMode) provides 2 states to display the group separator. -When the mode is set as `Always`, it will display separator while typing itself on the other hand when the mode is set as `LostFocus` it will enable the separator when the control lost its focus. - +[`GroupSeparatorMode`](https://help.syncfusion.com/cr/xamarin-ios/Syncfusion.SfNumericTextBox.iOS.SfNumericTextBox_1.html#Syncfusion_SfNumericTextBox_iOS_SfNumericTextBox_GroupSeparatorMode) provides 2 states to display the group separator. When the mode is set as `Always`, it will display the separator while typing itself. On the other hand, when the mode is set as `LostFocus`, it will enable the separator when the control loses its focus. N> [`EnableGroupSeparator`](https://help.syncfusion.com/cr/xamarin-ios/Syncfusion.SfNumericTextBox.iOS.SfNumericTextBox_1.html#Syncfusion_SfNumericTextBox_iOS_SfNumericTextBox_EnableGroupSeparator) property must be enabled to use the [`GroupSeparatorMode`](https://help.syncfusion.com/cr/xamarin-ios/Syncfusion.SfNumericTextBox.iOS.SfNumericTextBox_1.html#Syncfusion_SfNumericTextBox_iOS_SfNumericTextBox_GroupSeparatorMode). {% tabs %} diff --git a/Xamarin-iOS/SfNumericTextBox/Overview.md b/Xamarin-iOS/SfNumericTextBox/Overview.md index b5967359..7a3bd799 100644 --- a/Xamarin-iOS/SfNumericTextBox/Overview.md +++ b/Xamarin-iOS/SfNumericTextBox/Overview.md @@ -11,10 +11,9 @@ documentation: ug The Essential® Xamarin.iOS SfNumericTextBox is an advanced version of the Entry control that restricts input to numeric values. -Also provides a gesture friendly UI culture and can be configured to display different formats like currency format, scientific format etc. - -![Overview](images/Overview.png) +It also provides a gesture-friendly UI culture and can be configured to display different formats like currency format, scientific format, etc. +![SfNumericTextBox overview for Xamarin.iOS](images/Overview.png) ## Key Features * `FormatString` - Input string can be formatted by using the format strings. diff --git a/Xamarin-iOS/SfNumericTextBox/Range-Support.md b/Xamarin-iOS/SfNumericTextBox/Range-Support.md index 7e2b37ab..7b1d23d9 100644 --- a/Xamarin-iOS/SfNumericTextBox/Range-Support.md +++ b/Xamarin-iOS/SfNumericTextBox/Range-Support.md @@ -8,7 +8,7 @@ documentation: ug # Range Support in SfNumericTextBox -Restrict the values within a specific range by setting the Maximum and Minimum property values. +You can restrict the values within a specific range by setting the `Maximum` and `Minimum` property values. {% highlight c# %} @@ -25,4 +25,4 @@ this.Add(numericTextBox); {% endhighlight %} -N> Default Value of `Maximum` and `Minimum` is "null". \ No newline at end of file +N> The default value of `Maximum` and `Minimum` is null. diff --git a/Xamarin-iOS/SfNumericTextBox/Set-Maximum-Number-of-Decimal-Digits.md b/Xamarin-iOS/SfNumericTextBox/Set-Maximum-Number-of-Decimal-Digits.md index b236f89f..9c6af152 100644 --- a/Xamarin-iOS/SfNumericTextBox/Set-Maximum-Number-of-Decimal-Digits.md +++ b/Xamarin-iOS/SfNumericTextBox/Set-Maximum-Number-of-Decimal-Digits.md @@ -1,6 +1,6 @@ --- layout: post -title: Various features in Syncfusion® Numeric TextBox control for Xamarin.iOS +title: Maximum decimal digits in Syncfusion® NumericTextBox Xamarin.iOS description: Learn how to decide maximum decimal digits to be displayed and nullable value support in Numeric TextBox. platform: xamarin.ios control: SfNumericTextBox @@ -8,9 +8,9 @@ documentation: ug --- # Set Maximum Number of Decimal Digits -The maximum number of digits to be displayed after the decimal point can be specified by using `MaximumNumberDecimalDigits` property. +The maximum number of digits to be displayed after the decimal point can be specified by using the `MaximumNumberDecimalDigits` property. -N> The `MaximumNumberDecimalDigits` property can be provided with positive value only. +N> The `MaximumNumberDecimalDigits` property can be provided with positive values only. {% highlight c# %} diff --git a/Xamarin-iOS/SfNumericUpDown/Assign-Nullable-Value.md b/Xamarin-iOS/SfNumericUpDown/Assign-Nullable-Value.md index ddb9d67d..917b3366 100644 --- a/Xamarin-iOS/SfNumericUpDown/Assign-Nullable-Value.md +++ b/Xamarin-iOS/SfNumericUpDown/Assign-Nullable-Value.md @@ -1,14 +1,14 @@ --- layout: post -title: Various Features in Syncfusion® NumericUpDown control for Xamarin.iOS -description: Learn how to decide maximum decimal digits to be displayed, nullable value support, autoreverse, setting range and configuring step value in NumericUpDown +title: Nullable values in Syncfusion® NumericUpDown for Xamarin.iOS +description: Learn how to decide maximum decimal digits to be displayed, nullable value support, autoreverse, setting range and configuring step value in SfNumericUpDown platform: xamarin.ios -control: NumericUpDown +control: SfNumericUpDown documentation: ug --- # Assign Nullable Value -The null values can be set in SfNumericUpDown `Value` property, by setting `AllowNull` property value to true. +Null values can be set in the SfNumericUpDown `Value` property by setting the `AllowNull` property to true. N> By default, the property value is false. @@ -20,11 +20,11 @@ numeric.AllowNull = true; {% endhighlight %} -![Display the NumericUpDown with Null value](images/allownull.png) +![Display the SfNumericUpDown with Null value](images/allownull.png) ## Set Hint Text -The `WaterMark` text is used to display some information regarding the SfNumericEditBox. This watermark is visible when textbox is empty or Null. +The `WaterMark` text is used to display information about the SfNumericUpDown control. This watermark is visible when the control is empty or null. {% highlight c# %} @@ -34,6 +34,6 @@ numeric.WaterMark = (NSString)"NumericUpDown"; {% endhighlight %} -N> By default the property value is false +N> By default, the property value is false. -![Display the NumericUpDown with hint text](images/watermark.png) +![Display the SfNumericUpDown with hint text](images/watermark.png) diff --git a/Xamarin-iOS/SfNumericUpDown/Auto-Reverse.md b/Xamarin-iOS/SfNumericUpDown/Auto-Reverse.md index 75b9d976..179c69d7 100644 --- a/Xamarin-iOS/SfNumericUpDown/Auto-Reverse.md +++ b/Xamarin-iOS/SfNumericUpDown/Auto-Reverse.md @@ -1,16 +1,16 @@ --- layout: post -title: Various Features in Syncfusion® NumericUpDown control for Xamarin.iOS -description: Learn how to decide maximum decimal digits to be displayed, nullable value support, autoreverse, setting range and configuring step value in NumericUpDown +title: AutoReverse in Syncfusion® NumericUpDown for Xamarin.iOS +description: Learn how to decide maximum decimal digits to be displayed, nullable value support, autoreverse, setting range and configuring step value in SfNumericUpDown platform: xamarin.ios -control: NumericUpDown +control: SfNumericUpDown documentation: ug --- -# AutoReverse in NumericUpDown +# AutoReverse in SfNumericUpDown -While incrementing, the control will start from Minimum once it reaches the Maximum and vice-versa. +When incrementing, the control will start from the Minimum value once it reaches the Maximum value, and vice versa. -N> By default the property value is false. +N> By default, the property value is false. {% highlight C# %} @@ -22,9 +22,9 @@ numeric.AutoReverse = true; ## Continuous Spinning Between Ranges -User can restrict the Values between a specific range by setting `Maximum` and `Minimum` property value. +You can restrict the values within a specific range by setting the `Maximum` and `Minimum` property values. -N> By default the minimum property value is 0 and maximum property value is 100. +N> By default, the minimum property value is 0 and the maximum property value is 100. {% highlight C# %} @@ -36,15 +36,15 @@ numeric.Maximum = 50 {% endhighlight %} -![Display the NumericUpDown with maximum range](images/maximum.png) +![Display the SfNumericUpDown with maximum range](images/maximum.png) -![Display the NumericUpDown with minimum range](images/minimum.png) +![Display the SfNumericUpDown with minimum range](images/minimum.png) ## Set Increment -Frequency in which values gets incremented can be decided using `StepValue` property. +The frequency at which values are incremented can be configured using the `StepValue` property. -N> By default the property value is 1. +N> By default, the property value is 1. {% highlight C# %} diff --git a/Xamarin-iOS/SfNumericUpDown/Colors.md b/Xamarin-iOS/SfNumericUpDown/Colors.md index 3cc7ac73..fc77e46c 100644 --- a/Xamarin-iOS/SfNumericUpDown/Colors.md +++ b/Xamarin-iOS/SfNumericUpDown/Colors.md @@ -1,22 +1,22 @@ --- layout: post -title: Colors in Syncfusion® NumericUpDown control for Xamarin.iOS -description: Learn what are the color properties to customize the appearence of NumericUpDown in Xamarin.iOS platform. +title: Colors in Syncfusion® SfNumericUpDown control for Xamarin.iOS +description: Learn what are the color properties to customize the appearance of SfNumericUpDown in Xamarin.iOS platform. platform: xamarin.ios -control: NumericUpDown +control: SfNumericUpDown documentation: ug --- -# Colors in NumericUpDown +# Colors in SfNumericUpDown SfNumericUpDown is used to set custom background, text, and border colors through the following properties: -* `TextColor` - Sets the color of NumericUpDown's value +* `TextColor` - Sets the color of the SfNumericUpDown's value -* `BackgroundColor` - Sets the background color of NumericUpDown. +* `BackgroundColor` - Sets the background color of the SfNumericUpDown. -* `BorderColor` - Sets the border custom color of NumericUpDown +* `BorderColor` - Sets the custom border color of the SfNumericUpDown -* `WatermarkColor` - Sets the watermark custom color of NumericUpDown's watermark Text. +* `WatermarkColor` - Sets the custom color of the SfNumericUpDown's watermark text. ## TextColor @@ -34,7 +34,7 @@ SfNumericUpDown numeric = new SfNumericUpDown() {% endhighlight %} -![Customized text color in NumericUpown](images/textcolor.png) +![Customized text color in SfNumericUpDown](images/textcolor.png) ## BackgroundColor @@ -53,11 +53,11 @@ SfNumericUpDown numeric = new SfNumericUpDown() {% endhighlight %} -![Display the NumericUpDown with BackgroundColor](images/backgroundcolor.png) +![Display the SfNumericUpDown with BackgroundColor](images/backgroundcolor.png) ## BorderColor -The following code sample demonstrates how to set the BorderColor color: +The following code sample demonstrates how to set the BorderColor: {% highlight c# %} @@ -71,7 +71,7 @@ SfNumericUpDown numeric = new SfNumericUpDown() {% endhighlight %} -![Display the NumericUpDown with BorderColor](images/bordercolor.png) +![Display the SfNumericUpDown with BorderColor](images/bordercolor.png) ## WatermarkColor @@ -83,7 +83,6 @@ The following code sample demonstrates how to set the WatermarkColor: SfNumericUpDown numeric = new SfNumericUpDown() { - Watermark = (NSString)"Enter a Number", WatermarkColor = UIColor.Blue, AllowNull=true, @@ -91,4 +90,4 @@ SfNumericUpDown numeric = new SfNumericUpDown() {% endhighlight %} -![Display the NumericUpDown watermark text with a color](images/watermarkcolor.png) +![Display the SfNumericUpDown watermark text with a color](images/watermarkcolor.png) diff --git a/Xamarin-iOS/SfNumericUpDown/Events-and-Interactivity.md b/Xamarin-iOS/SfNumericUpDown/Events-and-Interactivity.md index ec1b7bea..d21389d5 100644 --- a/Xamarin-iOS/SfNumericUpDown/Events-and-Interactivity.md +++ b/Xamarin-iOS/SfNumericUpDown/Events-and-Interactivity.md @@ -1,9 +1,9 @@ --- layout: post -title: Events and Interactivity in Syncfusion® NumericUpDown for Xamarin.iOS -description: Learn how to get the value changed event and some interactivity for NumericUpDown in Xamarin.iOS platform. +title: Events in Syncfusion® NumericUpDown for Xamarin.iOS +description: Learn how to get the value changed event and some interactivity for SfNumericUpDown in Xamarin.iOS platform. platform: xamarin.ios -control: NumericUpDown +control: SfNumericUpDown documentation: ug --- # Events and Interactivity @@ -12,9 +12,9 @@ documentation: ug ### ValueChanged -You can perform any operation when changing the value of NumericUpDown using the ValueChanged event. The ValueChanged event returns the changed value in NumericUpDown. +You can perform operations when the value of SfNumericUpDown changes using the ValueChanged event. The ValueChanged event returns the changed value in the SfNumericUpDown. -For example you can restrict the NumericUpDown value if it exceed's greater than 3 digits using following code. +For example, you can restrict the SfNumericUpDown value if it exceeds 3 digits using the following code: {% highlight c# %} @@ -48,7 +48,7 @@ this.Add(numeric); ## Interactivity : ValueChangeMode -The ValueChangeMode property is used to mention when value needs to update, either in key pressed or focus lost state. When ValueChangeMode is set to OnKeyFocus, the value will be updated on each key press. When ValueChangeMode is set to OnLostFocus, the value is updated when the control lose the focus or the focus is moved to the next control. ValueChangeMode includes the following options: +The ValueChangeMode property is used to specify when the value needs to be updated, either on key press or when focus is lost. When ValueChangeMode is set to OnKeyFocus, the value will be updated on each key press. When ValueChangeMode is set to OnLostFocus, the value is updated when the control loses focus or when focus is moved to the next control. 1. OnKeyFocus 2. OnLostFocus diff --git a/Xamarin-iOS/SfNumericUpDown/Localization.md b/Xamarin-iOS/SfNumericUpDown/Localization.md index 82a86d6d..6910b92f 100644 --- a/Xamarin-iOS/SfNumericUpDown/Localization.md +++ b/Xamarin-iOS/SfNumericUpDown/Localization.md @@ -1,18 +1,18 @@ --- layout: post -title: Localization in Syncfusion® NumericUpDown control for Xamarin.iOS -description: Learn how to localize the Syncfusion® NumericUpDown control to any specific culture in Xamarin.iOS platform. +title: Localization in Syncfusion® SfNumericUpDown control for Xamarin.iOS +description: Learn how to localize the Syncfusion® SfNumericUpDown control to any specific culture in Xamarin.iOS platform. platform: xamarin.ios -control: NumericUpDown +control: SfNumericUpDown documentation: ug --- -# Localization in NumericUpDown +# Localization in SfNumericUpDown ## Culture -The NumericUpDown value can be localized to any specific culture. It can be specified by setting the `CultureInfo` property with `System.Globalization.CultureInfo` object instance. +The SfNumericUpDown value can be localized to any specific culture. It can be specified by setting the `CultureInfo` property with an `NSLocale` object instance. -N> Default `CultureInfo` property value is en-US. +N> The default `CultureInfo` property value is en-US. {% highlight C# %} @@ -22,8 +22,4 @@ numeric.CultureInfo = new new NSLocale("en-IN"); {% endhighlight %} -![Display the NumericUpDown with culture](images/Culture.png) - - - - +![Display the SfNumericUpDown with culture](images/Culture.png) diff --git a/Xamarin-iOS/SfNumericUpDown/Number-Formatting.md b/Xamarin-iOS/SfNumericUpDown/Number-Formatting.md index 928bd8b8..796951df 100644 --- a/Xamarin-iOS/SfNumericUpDown/Number-Formatting.md +++ b/Xamarin-iOS/SfNumericUpDown/Number-Formatting.md @@ -1,20 +1,20 @@ --- layout: post -title: Number Formatting in Syncfusion® NumericUpDown control for Xamarin.iOS -description: Learn how to add format String, enable parser mode and percent display mode for NumericUpDown control. +title: Number formatting in Syncfusion® NumericUpDown for Xamarin.iOS +description: Learn how to add format String, enable parser mode and percent display mode for SfNumericUpDown control. platform: xamarin.ios -control: NumericUpDown +control: SfNumericUpDown documentation: ug --- -# Number Formatting in NumericUpDown +# Number Formatting in SfNumericUpDown ## Format String -The `FormatString` property determines the format specifier by which the display text has to be formatted. +The `FormatString` property determines the format specifier used to format the display text. -N> The control displays the formatted text on lost focus. Default Value of `FormatString` is "n". +N> The control displays the formatted text when it loses focus. The default value of `FormatString` is "n". -It has three types, +It has three types: * `c` - Display the value with currency notation. @@ -66,13 +66,13 @@ numeric.FormatString = "p"; N> Instead of using above `FormatString` types, we can provide any symbol or value as string in `FormatString` property which will be appended with the value in NumericUpDown. -![Display the NumericUpDown with number formating](images/format.png) +![Display the SfNumericUpDown with number formating](images/format.png) ## Parser Mode -The value of the NumericUpDown can be parsed based on the `ParsingMode` property. +The value of the SfNumericUpDown can be parsed based on the `ParsingMode` property. -N> The `ParsingMode` is of type Parsers containing enum values of Double and Decimal. The default Value for `ParsingMode` is Double. +N> The `ParsingMode` is of type Parsers containing enum values of Double and Decimal. The default value for `ParsingMode` is Double. {% highlight C# %} @@ -82,13 +82,13 @@ numeric.ParsingMode = SFNumericUpDownParsingMode.Decimal; {% endhighlight %} -![Display the NumericUpDown with parser mode](images/ParserMode.png) +![Display the SfNumericUpDown with parser mode](images/ParserMode.png) ## Percent Display Mode The `PercentDisplayMode` property can be used to display numeric data in Percent mode. -N> The control displays the percent value on lost focus. +N> The control displays the percent value when it loses focus. It provides the following options: @@ -124,4 +124,4 @@ numeric.PercentDisplayMode = SFNumericUpDownPercentDisplayMode.Compute; {{ codesnippet5 | UnOrderList_Indent_Level_1 }} -![Display the NumericUpDown with percent mode](images/percent.png) \ No newline at end of file +![Display the SfNumericUpDown with percent mode](images/percent.png) diff --git a/Xamarin-iOS/SfNumericUpDown/Set-Maximum-Number-of-Decimal-Digits.md b/Xamarin-iOS/SfNumericUpDown/Set-Maximum-Number-of-Decimal-Digits.md index 219d6931..456f21a9 100644 --- a/Xamarin-iOS/SfNumericUpDown/Set-Maximum-Number-of-Decimal-Digits.md +++ b/Xamarin-iOS/SfNumericUpDown/Set-Maximum-Number-of-Decimal-Digits.md @@ -1,16 +1,16 @@ --- layout: post -title: Various Features in Syncfusion® NumericUpDown control for Xamarin.iOS -description: Learn how to decide maximum decimal digits to be displayed, nullable value support, autoreverse, setting range and configuring step value in NumericUpDown +title: Maximum decimal digits in Syncfusion® NumericUpDown Xamarin.iOS +description: Learn how to decide maximum decimal digits to be displayed, nullable value support, autoreverse, setting range and configuring step value in SfNumericUpDown platform: xamarin.ios -control: NumericUpDown +control: SfNumericUpDown documentation: ug --- # Set Maximum Number of Decimal Digits -The maximum number of digits to be displayed after the decimal point can be specified by using `MaximumDecimalDigits` property. +The maximum number of digits to be displayed after the decimal point can be specified using the `MaximumDecimalDigits` property. -N> The `MaximumDecimalDigits` property can be provided with positive value only. +N> The `MaximumDecimalDigits` property can be provided with positive values only. {% highlight C# %} diff --git a/Xamarin-iOS/SfNumericUpDown/Spin-Button-Alignment.md b/Xamarin-iOS/SfNumericUpDown/Spin-Button-Alignment.md index 8b243f7a..d6931af6 100644 --- a/Xamarin-iOS/SfNumericUpDown/Spin-Button-Alignment.md +++ b/Xamarin-iOS/SfNumericUpDown/Spin-Button-Alignment.md @@ -1,7 +1,7 @@ --- layout: post title: Appearance in Syncfusion® NumericUpDown control for Xamarin.iOS -description: Learn how to add customize spin buttons position and its appearance in Xamarin.iOS NumericUpDown control. +description: Learn how to customize spin button position and appearance in Xamarin.iOS Syncfusion® NumericUpDown control. platform: xamarin.ios control: NumericUpDown documentation: ug @@ -9,13 +9,13 @@ documentation: ug # Spin Button Alignment -Spin Button position in the NumericUpDown control can be changed relative to the TextBox based on `SpinButtonAlignment` property. +The spin button position in the NumericUpDown control can be changed relative to the TextBox based on the `SpinButtonAlignment` property. -There are three built-in modes. +There are three built-in modes: -### Right +## Right -Spin Buttons will get aligned to the right side of the control. +Spin buttons will be aligned to the right side of the control. {% highlight C# %} @@ -25,11 +25,11 @@ numeric.SpinButtonAlignment = SFNumericUpDownSpinButtonAlignment.Right; {% endhighlight %} -![Display the NumericUpDown spin button with right](images/spinright.png) +![Display the NumericUpDown spin button with right alignment](images/spinright.png) -### Left +## Left -Spin Buttons will get aligned to the left side of the control. +Spin buttons will be aligned to the left side of the control. {% highlight C# %} @@ -39,11 +39,11 @@ numeric.SpinButtonAlignment = SFNumericUpDownSpinButtonAlignment.Left; {% endhighlight %} -![Display the NumericUpDown spin button with left](images/spinleft.png) +![Display the NumericUpDown spin button with left alignment](images/spinleft.png) -### Both +## Both -Spin Buttons will get aligned to the both side of the control. +Spin buttons will be aligned to both sides of the control. {% highlight C# %} @@ -53,19 +53,19 @@ numeric.SpinButtonAlignment = SFNumericUpDownSpinButtonAlignment.Both; {% endhighlight %} -![Display the NumericUpDown spin button with both side](images/spinboth.png) +![Display the NumericUpDown spin button with both sides alignment](images/spinboth.png) -N> By default the property value is Right. +N> By default, the property value is Right. -## UpDownButtonSetting customization +## UpDownButtonSettings Customization -You can customize the UpDownButton of `SfNumericUpDown` control by using any of the following ways: +You can customize the UpDownButton of the `SfNumericUpDown` control using any of the following methods: 1. View 2. Image 3. FontIconText -### By using the View +### Using View {% highlight C# %} @@ -101,7 +101,7 @@ numeric.DecrementButtonSettings = new UpDownButtonSettings() {% endhighlight %} -### By using the Image with ButtonHeight and ButtonWidth +### Using Image with ButtonHeight and ButtonWidth {% highlight C# %} @@ -129,7 +129,7 @@ this.Add(numeric); {% endhighlight %} -### By using the FontIconText +### Using FontIconText {% highlight C# %} @@ -155,8 +155,7 @@ this.Add(numeric); {% endhighlight %} -## Additional customization on spin buttons - +## Additional Spin Button Customization ### BackgroundColor This property is used to change the background color of the increment and decrement buttons. @@ -181,11 +180,11 @@ numeric.DecrementButtonSettings = new UpDownButtonSettings() {% endhighlight %} -![Display the value with maximum](images/buttonbackground.png) +![Display the spin buttons with background color](images/buttonbackground.png) ### HighlightedBackgroundColor -This property is used to change the background color of tapped spin button +This property is used to change the background color of the tapped spin button. {% highlight C# %} @@ -234,7 +233,7 @@ numeric.DecrementButtonSettings = new UpDownButtonSettings() ### HighlightedFontColor -This property is used to change the text color of tapped spin button. +This property is used to change the text color of the tapped spin button. {% highlight C# %} diff --git a/Xamarin-iOS/SfNumericUpDown/getting-started.md b/Xamarin-iOS/SfNumericUpDown/getting-started.md index 48e362bb..84cd2831 100644 --- a/Xamarin-iOS/SfNumericUpDown/getting-started.md +++ b/Xamarin-iOS/SfNumericUpDown/getting-started.md @@ -1,15 +1,15 @@ --- layout: post -title: Getting Started with Syncfusion® NumericUpDown Control for Xamarin.iOS -description: A quick tour to initial users on Syncfusion® NumericUpDown control and customization features available in Xamarin.iOS platform +title: Getting Started with Syncfusion® SfNumericUpDown Control for Xamarin.iOS +description: A quick tour to initial users on Syncfusion® SfNumericUpDown control and customization features available in Xamarin.iOS platform platform: xamarin.ios -control: NumericUpDown +control: SfNumericUpDown documentation: ug --- -# Getting Started with NumericUpDown +# Getting Started with SfNumericUpDown -This section provides overview for working with Essential® NumericUpDown for Xamarin.iOS. You can walk through the entire process of creating a SfNumericUpDown. +This section provides an overview for working with Essential® SfNumericUpDown for Xamarin.iOS. You can walk through the entire process of creating a SfNumericUpDown. ## Referencing Essential Studio® Components in Your Solution @@ -25,9 +25,9 @@ iOS-unifed\Syncfusion.SfNumericUpDown.iOS.dll ## Add SfNumericUpDown -The SfNumericUpDown control configured entirely in C# code. The following steps explain on how to create a SfNumericUpDown and configure its elements, +The SfNumericUpDown control is configured entirely in C# code. The following steps explain how to create a SfNumericUpDown and configure its elements: -* Adding namespace for the added assemblies. +* Add the namespace for the added assemblies. {% capture codesnippet1 %} @@ -41,7 +41,7 @@ using Syncfusion.SfNumericUpDown.iOS; {{ codesnippet1 | UnOrderList_Indent_Level_1 }} -* Now add the SfNumericUpDown control with a required optimal name by using the included namespace. +* Now add the SfNumericUpDown control using the included namespace. {% capture codesnippet2 %} @@ -65,7 +65,7 @@ this.Add(numeric); ## Set Value -The SfNumericUpDown control display value can be set using `Value` property. +The SfNumericUpDown control's display value can be set using the `Value` property. {% highlight C# %} @@ -75,6 +75,6 @@ numeric.Value = 100; {% endhighlight %} -![Display the NumericUpDown with value](images/gettingstarted.png) +![Display the SfNumericUpDown with value](images/gettingstarted.png) You can find the complete getting started sample from [this](https://github.com/SyncfusionExamples/Getting-Started-SfNumericUpDown-in-Xamarin-iOS) link. \ No newline at end of file diff --git a/Xamarin-iOS/SfNumericUpDown/overview.md b/Xamarin-iOS/SfNumericUpDown/overview.md index 41158043..8fcb0817 100644 --- a/Xamarin-iOS/SfNumericUpDown/overview.md +++ b/Xamarin-iOS/SfNumericUpDown/overview.md @@ -1,24 +1,24 @@ --- layout: post -title: Overview of Syncfusion® NumericUpDown control for Xamarin.iOS -description: This explains about the overview and customization features available in NumericUpDown control in Xamarin.iOS platform. +title: Overview of Syncfusion® SfNumericUpDown control for Xamarin.iOS +description: This explains about the overview and customization features available in SfNumericUpDown control in Xamarin.iOS platform. platform: xamarin.ios -control: NumericUpDown +control: SfNumericUpDown documentation: ug --- -# Overview of NumericUpDown +# Overview of SfNumericUpDown -NumericUpDown is an editor control which provides up and down repeat buttons to increment and decrement the values. The control respects the UI culture and can be configured to display different formats like currency format, scientific format, etc. +SfNumericUpDown is an editor control which provides up and down repeat buttons to increment and decrement the values. The control respects the UI culture and can be configured to display different formats like currency format, scientific format, etc. -![Display the overview of NumericUpDown ](images/overview.png) +![Display the overview of SfNumericUpDown](images/overview.png) ## Key Features -* Number Formatting - Number can be formatted by setting the Format String for the control. -* CultureInfo - Number format can be localized to any specific culture. -* AllowNull - The control allows the user to set null value. -* ParsingMode - Value gets parsed based on this property. -* Range - User can restrict the Values between a specific range by setting Maximum and Minimum value. -* AutoReverse - When the Value reaches either Maximum or Minimum value, it automatically reverses the value from the Maximum or Minimum value. -* Spin Buttons Alignment - The alignment of Up and Down repeat buttons can be customized. +* Number Formatting - Numbers can be formatted by setting the Format String for the control. +* CultureInfo - Number formats can be localized to any specific culture. +* AllowNull - The control allows users to set null values. +* ParsingMode - Values are parsed based on this property. +* Range - Users can restrict values within a specific range by setting Maximum and Minimum values. +* AutoReverse - When the value reaches either the Maximum or Minimum value, it automatically reverses from the Maximum or Minimum value. +* Spin Button Alignment - The alignment of Up and Down repeat buttons can be customized. diff --git a/Xamarin-iOS/SfRadioButton/Event.md b/Xamarin-iOS/SfRadioButton/Event.md index be7562b0..4bd29d3e 100644 --- a/Xamarin-iOS/SfRadioButton/Event.md +++ b/Xamarin-iOS/SfRadioButton/Event.md @@ -9,11 +9,11 @@ keywords: button, SfRadioButton, RadioButton --- -# Event Xamarin.iOS RadioButton (SfRadioButton) +# Events in Xamarin.iOS RadioButton (SfRadioButton) ## StateChanged event -Occurs when the value(state) of the `IsChecked` property is changed by either touching the radio button or setting the value to the `IsChecked` property using the C# code. The event arguments are of type `StateChangedEventArgs` and expose the following property. +The `StateChanged` event occurs when the value (state) of the `IsChecked` property is changed by either touching the radio button or setting the value to the `IsChecked` property using C# code. The event arguments are of type `StateChangedEventArgs` and expose the following property: * `IsChecked`: The new value(state) of the `IsChecked` property. diff --git a/Xamarin-iOS/SfRadioButton/Getting-Started.md b/Xamarin-iOS/SfRadioButton/Getting-Started.md index ba3fc985..81649060 100644 --- a/Xamarin-iOS/SfRadioButton/Getting-Started.md +++ b/Xamarin-iOS/SfRadioButton/Getting-Started.md @@ -9,21 +9,21 @@ keywords: button, SfRadioButton, RadioButton --- -# Getting Started Xamarin.iOS RadioButton (SfRadioButton) +# Getting Started with Xamarin.iOS RadioButton (SfRadioButton) -This section explains the steps required to configure the `SfRadioButton` control in a real-time scenario and provides a walk-through on some of the customization features available in `SfRadioButton` control. +This section explains the steps required to configure the `SfRadioButton` control in a real-time scenario and provides a walk-through on some of the customization features available in the `SfRadioButton` control. -## Add a SfRadioButton reference -Syncfusion® Xamarin components are available in [nuget.org](https://www.nuget.org/). To add radio button to your project, open the NuGet package manager in Visual Studio, and search for "[syncfusion.xamarin.buttons.ios](https://www.nuget.org/packages/Syncfusion.Xamarin.Buttons.iOS)", and then install it. +## Add SfRadioButton reference +Syncfusion® Xamarin components are available in [nuget.org](https://www.nuget.org/). To add RadioButton to your project, open the NuGet package manager in Visual Studio, and search for "[syncfusion.xamarin.buttons.ios](https://www.nuget.org/packages/Syncfusion.Xamarin.Buttons.iOS)", and then install it. -![Xamarin.iOS radio button NuGet](Images/nuget.png) +![Xamarin.iOS RadioButton NuGet](Images/nuget.png) N>Starting with v16.2.0.x, if you reference Syncfusion® assemblies from trial setup or from the NuGet feed, you also have to include a license key in your projects. Please refer to this [link](https://help.syncfusion.com/common/essential-studio/licensing/license-key) to know about registering Syncfusion® license key in your Xamarin application to use our components. ## Create a Simple SfRadioButton The `SfRadioButton` control is configured entirely in C# code. The following steps explain how to create a `SfRadioButton` and configure its elements. -### Add namespace for referred assemblies +### Add namespace for referenced assemblies {% tabs %} {% highlight c# %} @@ -31,7 +31,7 @@ using Syncfusion.iOS.Buttons; {% endhighlight %} {% endtabs %} -### Refer the SfRadioButton control with declared suffix name for Namespace +### Reference the SfRadioButton control with declared suffix name for Namespace {% tabs %} {% highlight c# %} @@ -67,7 +67,7 @@ namespace RadioButton_Sample ## Setting caption -The radio button caption can be defined using the `SetTitle` method of `SfRadioButton`. This caption normally describes the meaning of the radio button and it displays next to radio button. +The RadioButton caption can be defined using the `SetTitle` method of `SfRadioButton`. This caption normally describes the meaning of the RadioButton and displays next to the RadioButton. {% tabs %} {% highlight c# %} @@ -76,17 +76,17 @@ radioButton.SetTitle("RadioButton", UIControlState.Normal); {% endhighlight %} {% endtabs %} -![Xamarin.iOS radio button caption text](Images/Caption.png) +![Xamarin.iOS RadioButton caption text](Images/Caption.png) -## Change the radio button state +## Change the RadioButton state The two different visual states of the `SfRadioButton` are: * Checked * Unchecked -You can change the state of the radio button using the `IsChecked` property of `SfRadioButton`. In the checked state, an inner circle is added to the visualization of radio button. -The radio buttons are used when there is a list of two or more options or group that are mutually exclusive and the user must select exactly one choice, such as “Select Gender” or “Choose the best option!”. +You can change the state of the RadioButton using the `IsChecked` property of `SfRadioButton`. In the checked state, an inner circle is added to the visualization of the RadioButton. +RadioButtons are used when there is a list of two or more options or groups that are mutually exclusive and the user must select exactly one choice, such as "Select Gender" or "Choose the best option!". {% tabs %} {% highlight c# %} diff --git a/Xamarin-iOS/SfRadioButton/Overview.md b/Xamarin-iOS/SfRadioButton/Overview.md index cbdfff31..7c60eebd 100644 --- a/Xamarin-iOS/SfRadioButton/Overview.md +++ b/Xamarin-iOS/SfRadioButton/Overview.md @@ -11,11 +11,11 @@ keywords: button, SfRadioButton, RadioButton # Overview -The radio button is a selection control that allows users to select one option from a set. The two states of radio button are checked and unchecked. +The RadioButton is a selection control that allows users to select one option from a set. The two states of RadioButton are checked and unchecked. -## Key features +## Key features -* Allow users to select and clear the control by tapping. -* Supports radio button color and label text customization. +* Allows users to select and clear the control by tapping. +* Supports RadioButton color and label text customization. -![](Images/RadioButton_Overview.png) +![SfRadioButton overview for Xamarin.iOS](Images/RadioButton_Overview.png) diff --git a/Xamarin-iOS/SfRadioButton/Visual-Customization.md b/Xamarin-iOS/SfRadioButton/Visual-Customization.md index c0b17da5..e61ac59a 100644 --- a/Xamarin-iOS/SfRadioButton/Visual-Customization.md +++ b/Xamarin-iOS/SfRadioButton/Visual-Customization.md @@ -13,7 +13,7 @@ keywords: button, SfRadioButton, RadioButton # Visual Customization in Xamarin.iOS SfRadioButton ## Customizing state color -The default state colors can be customized using the `CheckedColor` and `UncheckedColor `properties. The checked state color is updated to the `CheckedColor` property value when the state is changed to the checked. The unchecked state color is updated to the `UncheckedColor` property value when the state is changed to unchecked. +The default state colors can be customized using the `CheckedColor` and `UncheckedColor` properties. The checked state color is updated to the `CheckedColor` property value when the state is changed to checked. The unchecked state color is updated to the `UncheckedColor` property value when the state is changed to unchecked. {% tabs %} {% highlight c# %} @@ -58,7 +58,7 @@ You can customize the display text appearance of the `SfRadioButton` control usi * `SetTitleColor`: Changes the color of the text. * `HorizontalAlignment`: Changes the horizontal alignment of the caption text. -* `Font`: Changes the font family of the text and sets font attributes(bold/italic/none) of the text and also sets font size of the caption text. +* `Font`: Changes the font family of the text and sets font attributes (bold/italic/none) of the text and also sets font size of the caption text. {% tabs %} {% highlight c# %}