PermilleFormatter.IsZeroSigned Property

Definition

Gets or sets whether -0 is formatted as "-0" or "0".

public:
 property bool IsZeroSigned { bool get(); void set(bool value); };
bool IsZeroSigned();

void IsZeroSigned(bool value);
public bool IsZeroSigned { get; set; }
var boolean = permilleFormatter.isZeroSigned;
permilleFormatter.isZeroSigned = boolean;
Public Property IsZeroSigned As Boolean

Property Value

Boolean

bool

True if -0 is formatted as "-0", and false if -0 is formatted as "0".

Implements

Remarks

You can set this property to specify that PermilleFormatter display negative 0 as "-0". This enables the scenario where you wish to display "-0" when it represents the rounded value of some small negative value (such as -0.00001).

This property defaults to false to be consistent with Windows 8 and Windows Server 2012, in which -0 was always formatted as "0".

Applies to