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
Wiki Markup
{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.{excerpt}
{signature:C#}
 public System.String LicenseKey{ get; set; }
{signature}{signature:vb.net}
Public Property LicenseKey() As String
{signature}
{remarks}For assistance with licensing issues, contact SoftArtisans Technical Services \(http://support.softartisans.com\).

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

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

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

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

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

{example}