NumberFormatInfo.PercentDecimalDigits Property
.NET Framework 2.0
Gets or sets the number of decimal places to use in percent values.
Namespace: System.Globalization
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
/** @property */ public int get_PercentDecimalDigits () /** @property */ public void set_PercentDecimalDigits (int value)
public function get PercentDecimalDigits () : int public function set PercentDecimalDigits (value : int)
Property Value
The number of decimal places to use in percent values. The default for InvariantInfo is 2.| Exception type | Condition |
|---|---|
| The property is being set to a value that is less than 0 or greater than 99. | |
| The property is being set and the NumberFormatInfo is read-only. |
The following code example demonstrates the effect of changing the PercentDecimalDigits property.
using System; using System.Globalization; class NumberFormatInfoSample { public static void Main() { // Gets a NumberFormatInfo associated with the en-US culture. NumberFormatInfo nfi = new CultureInfo( "en-US", false ).NumberFormat; // Displays a negative value with the default number of decimal digits (2). Double myInt = 0.1234; Console.WriteLine( myInt.ToString( "P", nfi ) ); // Displays the same value with four decimal digits. nfi.PercentDecimalDigits = 4; Console.WriteLine( myInt.ToString( "P", nfi ) ); } } /* This code produces the following output. 12.34 % 12.3400 % */
import System.*;
import System.Globalization.*;
class NumberFormatInfoSample
{
public static void main(String[] args)
{
// Gets a NumberFormatInfo associated with the en-US culture.
NumberFormatInfo nfi =
(new CultureInfo("en-US", false)).get_NumberFormat();
// Displays a negative value with the default number of decimal
// digits (2).
System.Double myInt = (System.Double)0.1234;
Console.WriteLine(myInt.ToString("P", nfi));
//Displays the same value with four decimal digits.
nfi.set_PercentDecimalDigits(4);
Console.WriteLine(myInt.ToString("P", nfi));
} //main
} //NumberFormatInfoSample
/*
This code produces the following output.
12.34 %
12.3400 %
*/
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.