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 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}{signature:
}
Signature
vb.net
vb.net
Public Property LicenseKey() As String
{signature}
{remarks}For assistance with licensing issues, contact SoftArtisans Technical Services \
Remarks

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

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

Example
Code Block
csharp
csharp
titleC#


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

          //--- Set LicenseKey
          xla.LicenseKey = "XXXXXX-XXXX-XXXX-XXXXXX";
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


          '--- Get LicenseKey
          Dim keyAs String = xla.LicenseKey

          '--- Set LicenseKey
          xla.LicenseKey = "XXXXXX-XXXX-XXXX-XXXXXX"
        
{code} {example}