Message-ID: <836289031.9733.1711700700398.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_9732_89874296.1711700700398" ------=_Part_9732_89874296.1711700700398 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html ExcelTemplate.Version

ExcelTemplate.Version

Description

Returns the exact version of ExcelWriter.=20
C#
=20
 public System.String Version{ get; }
=20
=20
vb.net
=20
Public ReadOnly Property Version() As String
=20
=20

Remarks

=20

The String returned by ExcelTemplate.Version is of the foll= owing format:

=20
            SoftArtisans.ProductName Major.Minor.Patch.Build
            (mmddyyyy-hhmmss-buildMachineId)
=20

PlaceHolder

Description

ProductName

A product name like "SoftArtisans.ExcelW= riter." Note: the product name may be different depending on what lice= nse key is in effect.

Major

Major release number.

Minor

Minor release number.

Patch

Patch or bug fix number.

Build

Build number.

mmddyyyy

Date the build was compiled.

hhmmss

Time the build was compiled.

buildMachineId

Unique computer ID for the computer on which = this product was compiled.

Version is a Read Only property.

=20

Examples

=20
C#
=20
          string version =3D xlt.Version;

          //--- Bind the version to the data marker
          //--- %%=3D$ExcelWriterVersion.
          xlt.SetCellDataSource(version, "ExcelWriterVersion");
        
=20
vb.net
=20
          Dim version As String =3D xlt.Version

          '--- Bind the version to the data marker
          '--- %%=3D$ExcelWriterVersion.
          xlt.SetCellDataSource(version, "ExcelWriterVersion")
        
=20
------=_Part_9732_89874296.1711700700398--