Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
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.



{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}
Signature
C#C#
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}{signature:vb.net
vb.net
}
Public Property LicenseKey() As String
Remarks
For assistance with licensing issues, contact SoftArtisans Technical Services
{signature}
{remarks}For assistance with licensing issues, contact SoftArtisans Technical Services \(http://support.softartisans.com\).
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle