Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt

The LicenseKey property is provided to assist in debugging license-related issues. 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.

...

Example
Code Block
csharp
csharp
titleC#

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

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

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

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