Indicates if zero minutes are included in formatted output.
[Visual Basic 6.0] Property ShowZeroMinutes As Boolean
[Visual Basic .NET] Public Property ShowZeroMinutes As Boolean
[C#] public bool ShowZeroMinutes {get; set;}
[Java] public boolean isShowZeroMinutes() throws IOException, AutomationException
[Java] public void setShowZeroMinutes( boolean ShowZeroMinutes ) throws IOException, AutomationException
[C++]
HRESULT get_ShowZeroMinutes(
VARIANT_BOOL* Show
);
[C++] HRESULT put_ShowZeroMinutes( VARIANT_BOOL Show);
Parameters
Show [out, retval]
Show is a parameter of type VARIANT_BOOL
Show [in]
Show is a parameter of type VARIANT_BOOL
The ShowZeroMinutes property sets or returns an indicator that tells whether or not a zero value in the minutes location is expressed when the ValueToString method in the associated INumberFormat interface formats numbers. Non-zero values are always expressed in the format.
The settings for ShowZeroMinutes are:
| Setting | Description |
|
False |
(Default) Zero values in the minutes location are not shown, for example 17°N. |
|
True |
Zero values in the minutes location are shown, for example 17°0'N. |