Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Returns the exact version of ExcelWriter.

{signature}
{remarks}{code}
            SoftArtisans.ProductName Major.Minor.Patch.Build
            (mmddyyyy-hhmmss-buildMachineId)
A product name like
{code}
|| PlaceHolder || Description ||
| ProductName | A product name like "SoftArtisans.ExcelWriter." Note: the product name may be different depending on what license key is in effect.

Version is a Read Only property.

 |
| 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|ExcelTemplate.Version] is a *Read Only* property.

{remarks}
{example}{code:csharp|title=C#}

          string version = xlt.Version;

          //--- Bind the version to the data marker
          //--- %%=$ExcelWriterVersion.
          xlt.SetCellDataSource(version, "ExcelWriterVersion");
        
{code}
{code:vb.net
|title=vb.net
}

          Dim version As String = xlt.Version

          '--- Bind the version to the data marker
          '--- %%=$ExcelWriterVersion.
          xlt.SetCellDataSource(version, "ExcelWriterVersion")
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns the exact version of ExcelWriter.{excerpt}
{signature:C#}
 public System.String Version{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property Version() As String
Remarks
Code Block

PlaceHolder

Description

ProductName

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.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle