Message-ID: <1688790542.10477.1711725665485.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_10476_1754298315.1711725665485" ------=_Part_10476_1754298315.1711725665485 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html NumberFormat.CreateScientific(Int32)

NumberFormat.CreateScientific(Int32)

Descrip= tion

=20

Creates a scientific number format string.

=20
C#
=20
 public System.String CreateScientific(int numDecimalPlaces)
=20
=20
vb.net
=20
Public Function CreateScientific(ByVal numDecimalPlaces As Integer) As Stri=
ng
=20
=20

Parameters

= =20
numDecimal= Places
The number of decimal places to display.=20

Returns

A scie= ntific number format string.=20

Examples

=20
C#
=20

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

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

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

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