Files
NetUnicodeInfo/UnicodeInformation/UnihanNumericType.cs
T

22 lines
1.0 KiB
C#
Raw Normal View History

2017-09-07 23:10:17 +02:00
namespace System.Unicode
2014-11-15 00:58:03 +01:00
{
/// <summary>Represents the different numeric types from the Unihan database.</summary>
public enum UnihanNumericType : byte
{
/// <summary>Indicates that there is no Unihan numeric property defined for the code point.</summary>
2014-11-15 00:58:03 +01:00
None = 0,
/// <summary>Indicates that the propery kPrimaryNumeric is defined for this code point.</summary>
/// <remarks>The kPrimaryNumeric property is used for ideographs wich are standard numerals.</remarks>
2014-11-15 00:58:03 +01:00
[ValueName("kPrimaryNumeric")]
2014-11-15 11:50:43 +01:00
Primary = 1,
/// <summary>Indicates that the propery kAccountingNumeric is defined for this code point.</summary>
/// <remarks>The kAccountingNumeric property is used for ideographs used as accounting numerals.</remarks>
2014-11-15 11:50:43 +01:00
[ValueName("kAccountingNumeric")]
Accounting = 2,
/// <summary>Indicates that the propery kOtherNumeric is defined for this code point.</summary>
/// <remarks>The kOtherNumeric property is used for ideographs wich are used as numerals in non common contexts.</remarks>
2014-11-15 11:50:43 +01:00
[ValueName("kOtherNumeric")]
Other = 3,
2014-11-15 00:58:03 +01:00
}
}