Creates a scientific number format string.

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

The number of decimal places to display.

A scientific number format string.


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

          //--- Create the scientific format "0.000E+00".
          styl.NumberFormat = wb.NumberFormat.CreateScientific(3);
        

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

          '--- Create the scientific format "0.000E+00".
          styl.NumberFormat = wb.NumberFormat.CreateScientific(3)