Localization
8 Mar 2018 / 1 minute to read
The special symbols such as currency symbol, date separator, decimal separator etc., can be localized to any specific culture using the Culture property.
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. |
SfMaskedEdit maskedEdit = new SfMaskedEdit(this);
maskedEdit.Mask = "$ 0,000.00";
maskedEdit.Culture = new CultureInfo("fr-FR");
Now the ‘$’ will be localized to ‘€’;’.’ will be localized to ‘,’ and ‘,’ will be localized to ‘ ‘(single white space).
You can find the runnable localization sample from this link.
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page