The StringDigitSubstitute enumeration specifies how to substitute digits in a string according to a user's locale or language.
C++ Syntax
typedef enum {
StringDigitSubstituteUser = 0,
StringDigitSubstituteNone = 1,
StringDigitSubstituteNational = 2,
StringDigitSubstituteTraditional = 3
} StringDigitSubstitute;
FreeBASIC 语法
enum
StringDigitSubstituteUser = 0
StringDigitSubstituteNone = 1
StringDigitSubstituteNational = 2
StringDigitSubstituteTraditional = 3
end enum
常数
StringDigitSubstituteUser
Specifies a user-defined substitution scheme.
StringDigitSubstituteNone
Specifies to disable substitutions.
StringDigitSubstituteNational
Specifies substitution digits that correspond with the official national language of the user's locale.
StringDigitSubstituteTraditional
Specifies substitution digits that correspond with the user's native script or language, which may be different from the official national language of the user's locale.