Platforms to show: All Mac Windows Linux Cross-Platform

Back to NSLocaleNumberMBS class.

NSLocaleNumberMBS.alwaysShowsDecimalSeparator as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 10.3 ✅ Yes ❌ No ❌ No ✅ Yes All
A Boolean value that indicates whether the receiver always shows a decimal separator, even if the number is an integer.

(Read and Write property)

NSLocaleNumberMBS.currencyCode as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the currency code.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.currencycode
// shows for example: e.g "EUR" (in Germany)

A currency code is a three-letter code that is, in most cases, composed of a country's two-character Internet country code plus an extra character to denote the currency unit. For example, the currency code for the Australian dollar is "AUD". Currency codes are based on the ISO 4217 standard.

Available in Mac OS X v10.4 and later.
(Read and Write property)

NSLocaleNumberMBS.currencyDecimalSeparator as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the currency decimal separator as a string.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.currencyDecimalSeparator
// shows for example: e.g "," (in Germany)

(Read and Write property)

NSLocaleNumberMBS.currencyGroupingSeparator as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 10.3 ✅ Yes ❌ No ❌ No ✅ Yes All
The currency grouping separator for the receiver.

Available in Mac OS X v10.5 and later.
(Read and Write property)

NSLocaleNumberMBS.currencySymbol as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the local currency symbol.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.currencycode
// shows for example: e.g "€" (in Germany)

(Read and Write property)

NSLocaleNumberMBS.decimalSeparator as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns a string containing the character to represent decimal separators.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.decimalSeparator
// shows for example: e.g "," (in Germany)

(Read and Write property)

NSLocaleNumberMBS.exponentSymbol as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the string used as an exponent symbol.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.exponentSymbol
// shows for example: e.g "E" (in Germany)

The exponent symbol is the "E" or "e" in the scientific notation of numbers, as in 1.0e+56.
(Read and Write property)

NSLocaleNumberMBS.format as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 10.3 ✅ Yes ❌ No ❌ No ✅ Yes All
The format used by the receiver.

(Read and Write property)

NSLocaleNumberMBS.groupingSeparator as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns a string containing the grouping separator.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.groupingSeparator
// shows for example: e.g "." (in Germany)

For example, the grouping separator used in the United States is the comma ("10,000") whereas in France it is the period ("10.000").
(Read and Write property)

NSLocaleNumberMBS.hasThousandSeparators as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 10.3 ✅ Yes ❌ No ❌ No ✅ Yes All
A Boolean value that indicates whether the receiver's format includes thousand separators.

(Read and Write property)

NSLocaleNumberMBS.internationalCurrencySymbol as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the international currency symbol.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.internationalCurrencySymbol
// shows for example: e.g "EUR" (in Germany)

A country typically has a local currency symbol and an international currency symbol. The local symbol is used within the country, while the international currency symbol is used in international contexts to specify that country's currency unambiguously. The international currency symbol is often represented by a Unicode code point.
(Read and Write property)

NSLocaleNumberMBS.Lenient as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 10.3 ✅ Yes ❌ No ❌ No ✅ Yes All
A Boolean value that indicates whether the receiver uses heuristics to guess at the date which is intended by a string.

(Read and Write property)

NSLocaleNumberMBS.localizesFormat as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 10.3 ✅ Yes ❌ No ❌ No ✅ Yes All
A Boolean value that indicates whether the receiver localizes formats.

(Read and Write property)

NSLocaleNumberMBS.minusSign as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the string used to represent the minus sign.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.minusSign
// shows for example: e.g "-" (in Germany)

(Read and Write property)

NSLocaleNumberMBS.negativeFormat as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the format used to display negative numbers.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.negativeFormat
// shows for example: e.g "#,##0.00 ¤" (in Germany)

(Read and Write property)

NSLocaleNumberMBS.negativeInfinitySymbol as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the symbol used to represent negative infinity.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.negativeInfinitySymbol
// shows for example: e.g "" (in Germany)

(Read only property)

NSLocaleNumberMBS.negativePrefix as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the string which is inserted as a prefix to negative values.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.negativePrefix
// shows for example: e.g "-" (in Germany)

(Read and Write property)

NSLocaleNumberMBS.negativeSuffix as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the string which adds as a suffix to negative values.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.negativeSuffix
// shows for example: e.g "€" (in Germany)

(Read and Write property)

NSLocaleNumberMBS.nilSymbol as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the string used to represent a nil value.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.nilSymbol
// shows for example: e.g "" (in Germany)

(Read only property)

NSLocaleNumberMBS.notANumberSymbol as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the symbol used to represent NaN ("not a number") when it converts values.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.notANumberSymbol
// shows for example: e.g "NaN" (in Germany)

(Read only property)

NSLocaleNumberMBS.paddingCharacter as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns a string containing the padding character.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.paddingCharacter
// shows for example: e.g "*" (in Germany)

(Read and Write property)

NSLocaleNumberMBS.PartialStringValidationEnabled as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 10.3 ✅ Yes ❌ No ❌ No ✅ Yes All
A Boolean value that indicates whether partial string validation is enabled.

(Read and Write property)

NSLocaleNumberMBS.percentSymbol as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the string that is used to represent the percent symbol.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.percentSymbol
// shows for example: e.g "%" (in Germany)

(Read and Write property)

NSLocaleNumberMBS.perMillSymbol as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the string that is used for the per-thousands symbol.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.perMillSymbol
// shows for example: e.g "‰" (in Germany)

(Read and Write property)

NSLocaleNumberMBS.plusSign as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the string used for the plus sign.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.plusSign
// shows for example: e.g "+" (in Germany)

(Read and Write property)

NSLocaleNumberMBS.positiveFormat as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the format used to display positive numbers.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.negativeFormat
// shows for example: e.g "#,##0.00 ¤" (in Germany)

(Read and Write property)

NSLocaleNumberMBS.positiveInfinitySymbol as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the string used for the positive infinity symbol.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.positiveInfinitySymbol
// shows for example: e.g "" (in Germany)

(Read only property)

NSLocaleNumberMBS.positivePrefix as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the string used as the prefix for positive values.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.positivePrefix
// shows for example: e.g "" (in Germany)

(Read and Write property)

NSLocaleNumberMBS.positiveSuffix as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the string used as the suffix for positive values.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.positiveSuffix
// shows for example: e.g " €" (in Germany)

(Read and Write property)

NSLocaleNumberMBS.thousandSeparator as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 10.3 ✅ Yes ❌ No ❌ No ✅ Yes All
A Boolean value that indicates whether the receiver's format includes thousand separators.

(Read and Write property)

NSLocaleNumberMBS.usesGroupingSeparator as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 10.3 ✅ Yes ❌ No ❌ No ✅ Yes All
A Boolean value that indicates whether the receiver uses the grouping separator.

(Read and Write property)

NSLocaleNumberMBS.usesSignificantDigits as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 10.3 ✅ Yes ❌ No ❌ No ✅ Yes All
A Boolean value that indicates whether the receiver uses significant digits.

(Read and Write property)

NSLocaleNumberMBS.zeroSymbol as String

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Currency, Date and Time Format MBS MacBase Plugin 7.4 ✅ Yes ❌ No ❌ No ✅ Yes All
Returns the string used as the zero symbol.
Example
dim l as new NSLocaleMBS
dim n as NSLocaleNumberMBS = l.NumberCurrency

MsgBox n.zeroSymbol
// shows for example: e.g "0" (in Germany)

(Read and Write property)

The items on this page are in the following plugins: MBS MacBase Plugin.


The biggest plugin in space...