diff --git a/winui-toc.html b/winui-toc.html index 2ce36ca69..8e416ed50 100644 --- a/winui-toc.html +++ b/winui-toc.html @@ -378,7 +378,6 @@
  • Getting Started
  • Mask Types
  • Formatting Value
  • -
  • Culture
  • Error Indication
  • Customization
  • Events
  • diff --git a/winui/Masked-TextBox/Culture.md b/winui/Masked-TextBox/Culture.md deleted file mode 100644 index 1e25dbd40..000000000 --- a/winui/Masked-TextBox/Culture.md +++ /dev/null @@ -1,78 +0,0 @@ ---- -layout: post -title: Culture in WinUI Masked TextBox control | Syncfusion -description: Learn all about how to set the different culture support for currency symbols, date, time, decimal, and group separators in the Masked TextBox control. -platform: WinUI -control: SfMaskedTextBox -documentation: ug ---- - -# Culture in WinUI Masked TextBox - -The Masked TextBox allows you to set any [Culture](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Editors.SfMaskedTextBox.html#Syncfusion_UI_Xaml_Editors_SfMaskedTextBox_Culture) support for currency symbols, date separators, time separators, group separators, and decimal separators by using the below special symbols. - - - - - - - - - - - - - - - - - - - - - - - - - -
    -Characters -Description
    -. - -Decimal separator determined by current culture. -
    -, - -Group separator determined by current culture. -
    -/ - -Date separator determined by current culture. -
    -: - -Time separator determined by current culture. -
    -$ - -Currency symbol determined by current culture. -
    - -The following example shows how to set the the France culture for currency symbol, group separator and decimal separator. - -{% tabs %} -{% highlight C# %} - -SfMaskedTextBox maskedTextBox = new SfMaskedTextBox(); -maskedTextBox.Width = "200"; -maskedTextBox.MaskType = MaskedTextBoxMaskType.Simple; -maskedTextBox.Mask = "$ 0,000.00"; -maskedTextBox.Culture = new CultureInfo("fr-FR"); - -{% endhighlight %} -{% endtabs %} - -Based on the France Culture, the ‘$’ will be localized to ‘€’; ‘.’ will be localized to ‘,’ and ‘,’ will be localized to ‘ ‘(single white space). - -![WinUI Masked TextBox culture](MaskedTextBox_Images/winui_masked_textbox_culture.gif) \ No newline at end of file diff --git a/winui/Masked-TextBox/MaskedTextBox_Images/winui_masked_textbox_culture.gif b/winui/Masked-TextBox/MaskedTextBox_Images/winui_masked_textbox_culture.gif deleted file mode 100644 index f9624188b..000000000 Binary files a/winui/Masked-TextBox/MaskedTextBox_Images/winui_masked_textbox_culture.gif and /dev/null differ