Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Description

Excerpt

The property sets or returns the license key that enables ExcelWriter. The key is stored in the registry. It contains information about ExcelWriter, including product name, platform, and version.

Signature
C#
C#
 public System.String LicenseKey{ get; set; }
Signature
vb.net
vb.net
Public Property LicenseKey() As String
Remarks

For assistance with licensing issues, contact SoftArtisans Technical Services (http://support.softartisans.com\).

Example
Code Block
csharp
csharp
titleC#

          //--- Get LicenseKey
          string version = xla.LicenseKey;

          //--- Set LicenseKey
          xla.LicenseKey = "XXXXXX-XXXX-XXXX-XXXXXX";
        
Code Block
vb.net
vb.net
titlevb.net

          '--- Get LicenseKey
          Dim version As String = xla.LicenseKey

          '--- Set LicenseKey
          xla.LicenseKey = "XXXXXX-XXXX-XXXX-XXXXXX"