次の方法で共有


2.1.1.29 StringDigitSubstitution Enumeration

The StringDigitSubstitution enumeration defines ways to substitute digits in a string according to a user's locale or language.

 typedef  enum 
 {
   StringDigitSubstitutionUser = 0x00000000,
   StringDigitSubstitutionNone = 0x00000001,
   StringDigitSubstitutionNational = 0x00000002,
   StringDigitSubstitutionTraditional = 0x00000003
 } StringDigitSubstitution;

StringDigitSubstitutionUser:  Use an implementation-defined substitution scheme.

StringDigitSubstitutionNone:  Disable substitutions.

StringDigitSubstitutionNational:  Substitute digits that correspond with the official national language of the user's locale.

StringDigitSubstitutionTraditional:  Substitute digits that correspond to the user's native script or language, which can be different from the official national language of the user's locale.

See section 2.1.1 for the specification of additional enumerations.