Creates a string for displaying percentages.

 public System.String CreatePercentage(int numDecimalPlaces)
Public Function CreatePercentage(ByVal numDecimalPlaces As Integer) As String

The number of decimal places to display.

A format string for percentages.


          //--- Create a style.
          Style styl = wb.CreateStyle();

          //--- Create the percentage format "0.000%".
          styl.NumberFormat = wb.NumberFormat.CreatePercentage(3);
        

          '--- Create a style.
          Dim styl As Style = wb.CreateStyle()

          '--- Create the percentage format "0.000%".
          styl.NumberFormat = wb.NumberFormat.CreatePercentage(3)