UnicodeNumericType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines the type of numeral when a Unicode character represents a number.
public enum class UnicodeNumericType
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
enum class UnicodeNumericType
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
public enum UnicodeNumericType
var value = Windows.Data.Text.UnicodeNumericType.none
Public Enum UnicodeNumericType
- Inheritance
-
UnicodeNumericType
- Attributes
Windows requirements
Device family |
Windows 10 (introduced in 10.0.10240.0 - for Xbox, see UWP features that aren't yet supported on Xbox)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v1.0)
|
Fields
Name | Value | Description |
---|---|---|
None | 0 | Not a numeric character. |
Decimal | 1 | A decimal digit in a decimal system that uses 0 through 9. |
Digit | 2 | A digit in the range 0 through 9 that is used in special contexts. |
Numeric | 3 | A character that represents another type of numeric value, such as a fraction. |
Remarks
A member of this enumeration is returned by GetNumericType.
These values follow the types in the Unicode Standard Annex #44.