共用方式為


DecimalFormatter.IsZeroSigned 屬性

定義

取得或設定 -0 是否格式化為 「-0」 或 「0」。

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

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

屬性值

Boolean

bool

True 是表示 如果 -0 格式化為 「-0」 ,如果 - 0 格式化為 「0」。

實作

備註

您可以設定這個屬性,以指定 DecimalFormatter 將負 0 顯示為 「-0」。 這可讓您在代表某些小型負值 (例如 -0.00001) 的舍入值時顯示 「-0」。

此屬性預設為 false ,以與 Windows 8 和 Windows Server 2012 一致,其中 -0 一律格式化為 「0」。

適用於