Creates a string for displaying fractions.

 public System.String CreateFraction(int numDigits)
Public Function CreateFraction(ByVal numDigits As Integer) As String

The number of digits to display.

A fraction format string.


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

          //--- Create the fraction format "# ???/???".
          styl.NumberFormat = wb.NumberFormat.CreateFraction(3);
        

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

          '--- Create the fraction format "# ???/???"
          styl.NumberFormat = wb.NumberFormat.CreateFraction(3)