DecimalFormat.ZeroDigit PropertyDecimalFormat.ZeroDigit PropertyDecimalFormat::ZeroDigit Property

Gets or sets the character used for the digit-zero-sign.

Syntax

Public Property ZeroDigit As Integer
        Get
        Set(ByVal value As Integer)
public int ZeroDigit { get; set; }
public:
property int ZeroDigit {
    int get();
    void set(int value);
}
 

Property Value

Type: System.Int32System.Int32System::Int32

The Unicode codepoint of the zero digit.

Exceptions

ExceptionCondition
ArgumentExceptionArgumentExceptionArgumentExceptionRaised if ZeroDigitZeroDigitZeroDigit is set to character which is not a digit (category Nd in the Unicode property database) with numeric value zero.

Remarks

The default value is "0".

This character must be a digit (category Nd in the Unicode property database), and it must have the numeric value zero.