Description
Returns the exact version of ExcelWriter.
C#
public System.String Version{ get ; } |
vb.net
Public ReadOnly Property Version() As String |
Remarks
SoftArtisans.ProductName Major.Minor.Patch.Build (mmddyyyy-hhmmss-buildMachineId) |
PlaceHolder |
Description |
---|---|
ProductName |
A product name like "SoftArtisans.ExcelWriter." Note: the product name may be different depending on what license 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.
Examples
C#
string version = xlt.Version; //--- Bind the version to the data marker //--- %%=$ExcelWriterVersion. xlt.SetCellDataSource(version, "ExcelWriterVersion" ); |
vb.net
Dim version As String = xlt.Version '--- Bind the version to the data marker '--- %%=$ExcelWriterVersion. xlt.SetCellDataSource(version, "ExcelWriterVersion" ) |