Indicates if formatted numbers contain padded zeros to the right of the decimal.
[Visual Basic 6.0] Property ZeroPad As Boolean
[Visual Basic .NET] Public Property ZeroPad As Boolean
[C#] public bool ZeroPad {get; set;}
[Java] public boolean isZeroPad() throws IOException, AutomationException
[Java] public void setZeroPad( boolean ZeroPad ) throws IOException, AutomationException
[C++]
HRESULT get_ZeroPad(
VARIANT_BOOL* pad
);
[C++] HRESULT put_ZeroPad( VARIANT_BOOL pad);
Parameters
pad [out, retval]
pad is a parameter of type VARIANT_BOOL
pad [in]
pad is a parameter of type VARIANT_BOOL
The ZeroPad property sets or returns an indicator that tells whether to pad zeros at the right of the decimal when the ValueToString method in the associated INumberFormat interface formats numbers.
The settings for ZeroPad are:
| Setting | Description |
|
False |
(Default) Numbers are formatted without padding decimal zeros. The last decimal digit (to the right of the decimal point) is a non-zero digit. |
|
True |
Decimal zeros or significant digit zeros are appended at the right of the decimal point up to the number of places indicated in the RoundingValue property. The RoundingOption setting determines whether decimal zeros or significant digit zeros are appended. |
To format numbers and express significant zeros at the right of the decimal, set ZeroPad True. For example, the number 12.0345 in 8 significant digits is the number 12.034500. In order to express the rightmost significant zeros, ZeroPad should be set True. With ZeroPad set False, the formatted number would be 12.0345.
INumericFormat Interface | IFractionFormat Interface | AngleFormat Class | IAngleFormat Interface | IPercentageFormat Interface | ICustomNumberFormat Interface | CurrencyFormat Class | LatLonFormat Class | FractionFormat Class | IRateFormat Interface | RateFormat Class | ILatLonFormat2 Interface | NumericFormat Class | CustomNumberFormat Class | INumericFormat Interface | PercentageFormat Class | IScientificNumberFormat Interface | ILatLonFormat Interface | INumberFormat Interface | ScientificFormat Class